Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 225 for unsat (0.05 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

        }
    
        @Override
        public SupportsConvention unsetConvention() {
            discardConvention();
            return this;
        }
    
        @Override
        public SupportsConvention unset() {
            discardValue();
            return this;
        }
    
        /**
         * Sets the value of the property to the current convention value, replacing whatever explicit value the property already had.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. security/pkg/credentialfetcher/plugin/gce.go

    func (p *GCEPlugin) GetPlatformCredential() (string, error) {
    	p.tokenMutex.Lock()
    	defer p.tokenMutex.Unlock()
    
    	if p.jwtPath == "" {
    		return "", fmt.Errorf("jwtPath is unset")
    	}
    	uri := fmt.Sprintf("instance/service-accounts/default/identity?audience=%s&format=full", p.aud)
    	token, err := metadata.GetWithContext(context.TODO(), uri)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    		// case go/build falls back to the runtime constants), so
    		// go/build.Default.GOOS/GOARCH == runtime.GOOS/GOARCH.
    		// So ctxt.CgoEnabled (== go/build.Default.CgoEnabled) is correct
    		// as is and can be left unmodified.
    		//
    		// All that said, starting in Go 1.20 we layer one more rule
    		// on top of the go/build decision: if CC is unset and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    				},
    				Status: api.PersistentVolumeStatus{
    					Phase: api.VolumeBound,
    				},
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"test1", "4Gi", "ROX", "", "Bound", "default/test", "", "<unset>", "", "<unknown>", "<unset>"}}},
    		},
    		{
    			// Test failed
    			pv: api.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test2",
    				},
    				Spec: api.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

     * <ul>
     *     <li>{@link EmptySupplier}, the initial value of a collection (or after {@link #empty()} is invoked)</li>
     *     <li>{@link NoValueSupplier}, when the collection value is unset (via {@link #set(Iterable)} or {@link #unset()}.</li>
     *     <li>{@link FixedSupplier}, when the collection is finalized - in that case, the fixed supplier will wrap the realized
     *     of the Java collection this collection property corresponds to</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/start.go

    	//
    	// This field can be used to simulate a future upload that collects recently
    	// modified counters.
    	UploadStartTime time.Time
    
    	// UploadURL, if set, overrides the URL used to receive uploaded reports. If
    	// unset, this URL defaults to https://telemetry.go.dev/upload.
    	UploadURL string
    }
    
    // Start initializes telemetry using the specified configuration.
    //
    // Start opens the local telemetry database so that counter increment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. pkg/kubelet/userns/userns_manager_test.go

    			podSetAfterCleanup:   []types.UID{"pod-1"},
    			podUnsetAfterCleanup: []types.UID{"pod-2"},
    		},
    		{
    			name:                 "pod set before cleanup but not listed ==> unset",
    			podSetBeforeCleanup:  []types.UID{"pod-1", "pod-2"},
    			runningPods:          []*kubecontainer.Pod{{ID: "pod-1"}},
    			podUnsetAfterCleanup: []types.UID{"pod-1", "pod-2"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            return this;
        }
    
        @Override
        public MapProperty<K, V> unset() {
            return Cast.uncheckedNonnullCast(super.unset());
        }
    
        private void unsetValueAndDefault() {
            // assign no-value default before restoring to it
            defaultValue = noValueSupplier();
            unset();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    	name string
    	v    int
    }
    
    type Bitmap []uint32
    
    // set the i-th bit.
    func (bm Bitmap) Set(i Sym) {
    	n, r := uint(i)/32, uint(i)%32
    	bm[n] |= 1 << r
    }
    
    // unset the i-th bit.
    func (bm Bitmap) Unset(i Sym) {
    	n, r := uint(i)/32, uint(i)%32
    	bm[n] &^= (1 << r)
    }
    
    // whether the i-th bit is set.
    func (bm Bitmap) Has(i Sym) bool {
    	n, r := uint(i)/32, uint(i)%32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/types.go

    	CRISocket string
    
    	// Taints specifies the taints the Node API object should be registered with. If this field is unset, i.e. nil,
    	// it will be defaulted with a control-plane taint for control-plane nodes. If you don't want to taint your control-plane
    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