Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 126 for modzip (0.1 sec)

  1. 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)
  2. 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)
  3. src/syscall/mksysnum_freebsd.pl

    			print " SYS_CAP_GETRIGHTS = 515 // { int cap_getrights(int fd, \\\n";
    			print " SYS_CAP_ENTER = 516 // { int cap_enter(void); }\n";
    			print " SYS_CAP_GETMODE = 517 // { int cap_getmode(u_int *modep); }\n";
    		}
    	}
    }
    
    print <<EOF;
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. 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)
  5. pkg/util/node/node.go

    			klog.Errorf("Failed to retrieve node info: %v", err)
    			return false, nil
    		}
    		nodeIP, err = GetNodeHostIP(node)
    		if err != nil {
    			klog.Errorf("Failed to retrieve node IP: %v", err)
    			return false, err
    		}
    		return true, nil
    	})
    	if err == nil {
    		klog.Infof("Successfully retrieved node IP: %v", nodeIP)
    	}
    	return nodeIP
    }
    
    // IsNodeReady returns true if a node is ready; false otherwise.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/files/archivesChangedBaseName/kotlin/build.gradle.kts

    }
    // end::base-plugin-config[]
    
    val myZip by tasks.registering(Zip::class) {
        from("somedir")
    }
    
    val myOtherZip by tasks.registering(Zip::class) {
        archiveAppendix = "wrapper"
        archiveClassifier = "src"
        from("somedir")
    }
    
    tasks.register("echoNames") {
        val projectNameString = project.name
        val archiveFileName = myZip.flatMap { it.archiveFileName }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 828 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-eager/kotlin/build.gradle.kts

    // tag::container-api[]
    tasks.create("greeting") {
        doLast { println("Hello, World!") }
    }
    // end::container-api[]
    
    // tag::typed-container-api[]
    tasks.create<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
    - 258 bytes
    - Viewed (0)
Back to top