Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 728 for extr6 (0.05 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

        def "recompiles all source files that include changed header file"() {
            given:
            outputs.snapshot { run "mainExecutable" }
    
            when:
            sharedHeaderFile << """
                // Some extra content
    """
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped compileTask
    
            and:
            outputs.recompiledFiles allSources
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  2. src/testing/benchmark.go

    // and deletes user-reported metrics.
    // It does not affect whether the timer is running.
    func (b *B) ResetTimer() {
    	if b.extra == nil {
    		// Allocate the extra map before reading memory stats.
    		// Pre-size it to make more allocation unlikely.
    		b.extra = make(map[string]float64, 16)
    	} else {
    		clear(b.extra)
    	}
    	if b.timerOn {
    		runtime.ReadMemStats(&memStats)
    		b.startAllocs = memStats.Mallocs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller_test.go

    						"client-ca-file":                     string(someRandomCA),
    						"requestheader-username-headers":     `["alfa","bravo","charlie"]`,
    						"requestheader-group-headers":        `["delta"]`,
    						"requestheader-extra-headers-prefix": `["echo","foxtrot"]`,
    						"requestheader-client-ca-file":       string(anotherRandomCA),
    						"requestheader-allowed-names":        `["first","second"]`,
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--requestheader-username-headers=X-Remote-User",
    				"--requestheader-group-headers=X-Remote-Group",
    				"--requestheader-extra-headers-prefix=X-Remote-Extra-",
    				"--requestheader-client-ca-file=" + filepath.Join(testCertsDir, "front-proxy-ca.crt"),
    				"--requestheader-allowed-names=front-proxy-client",
    				"--authorization-mode=Node,RBAC",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/server.go

    	if utilfeature.DefaultFeatureGate.Enabled(features.UnknownVersionInteroperabilityProxy) {
    		peeraddress := getPeerAddress(c.Extra.PeerAdvertiseAddress, c.Generic.PublicAddress, publicServicePort)
    		peerEndpointCtrl := peerreconcilers.New(
    			c.Generic.APIServerID,
    			peeraddress,
    			c.Extra.PeerEndpointLeaseReconciler,
    			c.Extra.PeerEndpointReconcileInterval,
    			client)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

     *     //if for some reason you want to add an extra sourceDirs
     *     sourceDirs += file('some-extra-source-folder')
     *
     *     //and some extra test source dirs
     *     testSources.from(file('some-extra-test-dir'))
     *
     *     //and some extra resource dirs
     *     resourceDirs += file('some-extra-resource-dir')
     *
     *     //and some extra test resource dirs
     *     testResources.from(file('some-extra-test-resource-dir'))
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	// +optional
    	UID ClaimOrExpression `json:"uid"`
    
    	// extra represents an option for the extra attribute.
    	// expression must produce a string or string array value.
    	// If the value is empty, the extra mapping will not be present.
    	//
    	// hard-coded extra key/value
    	// - key: "foo"
    	//   valueExpression: "'bar'"
    	// This will result in an extra attribute - foo: ["bar"]
    	//
    	// hard-coded key, value copying claim value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/poset.go

    			po.setchl(extra, i1r)
    			po.setchr(extra, e2)
    			po.setchr(i1, newedge(extra, false))
    			po.upush(undoSetChr, i1, i1r)
    		} else {
    			po.setchl(extra, i1l)
    			po.setchr(extra, e2)
    			po.setchl(i1, newedge(extra, false))
    			po.upush(undoSetChl, i1, i1l)
    		}
    	}
    }
    
    // newnode allocates a new node bound to SSA value n.
    // If n is nil, this is an extra node (= only used internally).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	// +optional
    	UID ClaimOrExpression `json:"uid"`
    
    	// extra represents an option for the extra attribute.
    	// expression must produce a string or string array value.
    	// If the value is empty, the extra mapping will not be present.
    	//
    	// hard-coded extra key/value
    	// - key: "foo"
    	//   valueExpression: "'bar'"
    	// This will result in an extra attribute - foo: ["bar"]
    	//
    	// hard-coded key, value copying claim value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/types.go

    type ControlPlaneComponent struct {
    	// ExtraArgs is an extra set of flags to pass to the control plane component.
    	// An argument name in this list is the flag name as it appears on the
    	// command line except without leading dash(es). Extra arguments will override existing
    	// default arguments. Duplicate extra arguments are allowed.
    	ExtraArgs []Arg
    
    	// ExtraVolumes is an extra set of host volumes, mounted to the control plane component.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top