Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for unsat (0.06 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string hub = 2;
    
      // The container image tag to pull. Image will be `Hub/Image:Tag-Variant`.
      google.protobuf.Value tag = 3;
    
      // The container image variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version.
      string variant = 29;
    
      // Image name to pull from. Image will be `Hub/Image:Tag-Variant`.
      // If Image contains a "/", it will replace the entire `image` in the pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    // wake immediately unparks the scavenger if necessary.
    //
    // Safe to run without a P.
    func (s *scavengerState) wake() {
    	lock(&s.lock)
    	if s.parked {
    		// Unset sysmonWake, since the scavenger is now being awoken.
    		s.sysmonWake.Store(0)
    
    		// s.parked is unset to prevent a double wake-up.
    		s.parked = false
    
    		// Ready the goroutine by injecting it. We use injectglist instead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    	{"if emptymap", "{{if .MSIEmpty}}NON-EMPTY{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
    	{"if map", "{{if .MSI}}NON-EMPTY{{else}}EMPTY{{end}}", "NON-EMPTY", tVal, true},
    	{"if map unset", "{{if .MXI.none}}NON-ZERO{{else}}ZERO{{end}}", "ZERO", tVal, true},
    	{"if map not unset", "{{if not .MXI.none}}ZERO{{else}}NON-ZERO{{end}}", "ZERO", tVal, true},
    	{"if $x with $y int", "{{if $x := true}}{{with $y := .I}}{{$x}},{{$y}}{{end}}{{end}}", "true,17", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    	// means that the field was specified, -1 means it was unset,
    	// and MaxPathLenZero being true mean that the field was
    	// explicitly set to zero. The case of MaxPathLen==0 with MaxPathLenZero==false
    	// should be treated equivalent to -1 (unset).
    	//
    	// When generating a certificate, an unset pathLenConstraint
    	// can be requested with either MaxPathLen == -1 or using the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

        }
    
    
        def "property is restored to initial state after unset"() {
            given:
            def property = propertyWithNoValue()
            property.set(someValue())
    
            expect:
            assertPropertyValueIs(someValue(), property)
            property.explicit
    
            when:
            property.unset()
    
            then:
            !property.present
            property.getOrNull() == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

        }
    
        @Override
        public Object getValue() {
          throw new AssertionError();
        }
      }
    
      /**
       * A singleton {@link WeakValueReference} used to denote an unset value in an entry with weak
       * values.
       */
      static final WeakValueReference<Object, Object, DummyInternalEntry> UNSET_WEAK_VALUE_REFERENCE =
          new WeakValueReference<Object, Object, DummyInternalEntry>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    		ik = gvk.Service
    	} else if kind == gvk.ServiceEntry.Kind && group == gvk.ServiceEntry.Group {
    		ik = gvk.ServiceEntry
    	} else {
    		return empty, fmt.Errorf("unsupported parentKey: %v/%v", p.Group, kind)
    	}
    	// Unset namespace means "same namespace"
    	ns = ptr.OrDefault((*string)(p.Namespace), localNamespace)
    	return parentKey{
    		Kind:      ik,
    		Name:      string(p.Name),
    		Namespace: ns,
    	}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            }
    
            properties.put(DefaultCommandLineActionFactory.WELCOME_MESSAGE_ENABLED_SYSTEM_PROPERTY, Boolean.toString(renderWelcomeMessage));
    
            // Having this unset is now deprecated, will default to `false` in Gradle 9.0
            // TODO remove - see https://github.com/gradle/gradle/issues/26810
            properties.put("org.gradle.kotlin.dsl.skipMetadataVersionCheck", "false");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        }
    
        @Override
        public Object getValue() {
          throw new AssertionError();
        }
      }
    
      /**
       * A singleton {@link WeakValueReference} used to denote an unset value in an entry with weak
       * values.
       */
      static final WeakValueReference<Object, Object, DummyInternalEntry> UNSET_WEAK_VALUE_REFERENCE =
          new WeakValueReference<Object, Object, DummyInternalEntry>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    // genEnumWithRuleAndValues creates a function that accepts an optional maxLength
    // with given validation rule and a set of enum values, following the convention of existing tests.
    // The test has two checks, first with maxLength unset to check if maxLength can be concluded from enums,
    // second with maxLength set to ensure it takes precedence.
    func genEnumWithRuleAndValues(rule string, values ...string) func(maxLength *int64) *schema.Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top