Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for modzip (0.18 sec)

  1. lib/time/mkzip.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // Mkzip writes a zoneinfo.zip with the content of the current directory
    // and its subdirectories, with no compression, suitable for package time.
    //
    // Usage:
    //
    //	go run ../../mkzip.go ../../zoneinfo.zip
    //
    // We use this program instead of 'zip -0 -r ../../zoneinfo.zip *' to get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/status_test.go

    }
    
    func TestRunningAddressesWithPod(t *testing.T) {
    	syncer := makeStatusSyncer(t, "")
    
    	address := syncer.runningAddresses()
    
    	if len(address) != 1 || address[0] != nodeIP {
    		t.Errorf("Address is not correctly set to node ip %v %v", address, nodeIP)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-eager/tests/executeTasks.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-lazy/tests/executeTasks.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-lazy/kotlin/build.gradle.kts

    // tag::container-api[]
    tasks.register("greeting") {
        doLast { println("Hello, World!") }
    }
    
    // end::container-api[]
    
    // tag::typed-container-api[]
    tasks.register<Zip>("docZip") {
        archiveFileName = "doc.zip"
        from("doc")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 263 bytes
    - Viewed (0)
  6. lib/time/update.bash

    # in the CL match the update.bash in the CL.
    
    # Versions to use.
    CODE=2024a
    DATA=2024a
    
    set -e
    
    cd $(dirname $0)
    rm -rf work
    mkdir work
    go build -o work/mkzip mkzip.go # build now for correct paths in build errors
    cd work
    mkdir zoneinfo
    curl -sS -L -O https://www.iana.org/time-zones/repository/releases/tzcode$CODE.tar.gz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pkg/kube/krt/join_test.go

    	}
    	sec.Create(se)
    	assert.EventuallyEqual(t, fetch, []SimpleEndpoint{
    		{pod.Name, se.Name, pod.Namespace, pod.Status.PodIP},
    		{pod2.Name, se.Name, pod2.Namespace, pod2.Status.PodIP},
    		{pod.Name, svc.Name, pod.Namespace, pod.Status.PodIP},
    		{pod2.Name, svc.Name, pod2.Namespace, pod2.Status.PodIP},
    	})
    }
    
    func TestCollectionJoinSync(t *testing.T) {
    	c := kube.NewFakeClient(&corev1.Pod{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/archiveNaming/tests/archiveNaming.sample.conf

    # tag::cli[]
    # gradle --quiet myZip
    # end::cli[]
    executable: gradle
    args: myZip
    flags: --quiet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 135 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-lazy/groovy/build.gradle

    // tag::container-api[]
    tasks.register('greeting') {
        doLast { println('Hello, World!') }
    }
    // end::container-api[]
    
    // tag::typed-container-api[]
    tasks.register('docZip', Zip) {
        archiveFileName = 'doc.zip'
        from 'doc'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 261 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-eager/groovy/build.gradle

    // tag::container-api[]
    tasks.create('greeting') {
        doLast { println('Hello, World!') }
    }
    // end::container-api[]
    
    // tag::typed-container-api[]
    tasks.create(name: 'docZip', type: Zip) {
        archiveFileName = 'doc.zip'
        from 'doc'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 269 bytes
    - Viewed (0)
Back to top