Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 179 for unsat (0.08 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

                it.put('k2', '4')
            }
    
            expect:
            assertValueIs(['k0': '1', 'k1': '2', 'k2': '4'])
            property.explicit
    
            when:
            property.unset()
    
            then:
            assertValueIs(['k0': '1'])
            !property.explicit
        }
    
        def "may configure incrementally based on convention value using insert"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    		return nil, err
    	}
    
    	return ret, nil
    }
    
    // validateUnsupportedFields checks that those fields rejected by validation are actually unset.
    func validateUnsupportedFields(s *apiextensions.JSONSchemaProps) error {
    	if len(s.ID) > 0 {
    		return fmt.Errorf("OpenAPIV3Schema 'id' is not supported")
    	}
    	if len(s.Schema) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/net/resolverdialfunc_test.go

    	return func(ctx context.Context, network, address string) (Conn, error) {
    		a := &resolverFuncConn{
    			h:       h,
    			network: network,
    			address: address,
    			ttl:     10, // 10 second default if unset
    		}
    		if h.StartDial != nil {
    			if err := h.StartDial(network, address); err != nil {
    				return nil, err
    			}
    		}
    		return a, nil
    	}
    }
    
    type resolverDialHandler struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

        # Ambient mode only.
        # Set this if you install ztunnel to a different namespace from `istiod`.
        # If set, `istiod` will allow connections from trusted node proxy ztunnels
        # in the provided namespace.
        # If unset, `istiod` will assume the trusted node proxy ztunnel resides
        # in the same namespace as itself.
        trustedZtunnelNamespace: ""
      sidecarInjectorWebhook:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

        /**
         * {@inheritDoc}
         * <p>
         * This is similar to calling {@link #value(Object)} with a <code>null</code> argument.
         * </p>
         */
        @Override
        Property<T> unset();
    
        /**
         * Specifies the value to use as the convention (default value) for this property. If the convention is set and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/make.bash

    				printf 'WARNING: set %s as GOROOT_BOOTSTRAP\n' "$goroot" >&2
    			fi
    			GOROOT_BOOTSTRAP="$goroot"
    		fi
    	fi
    done; unset IFS
    if [[ ! -x "$GOROOT_BOOTSTRAP/bin/go" ]]; then
    	echo "ERROR: Cannot find $GOROOT_BOOTSTRAP/bin/go." >&2
    	echo "Set \$GOROOT_BOOTSTRAP to a working Go tree >= Go $bootgo." >&2
    	exit 1
    fi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

                '-Porg.gradle.java.installations.auto-download=false',
            ]
        }
    
        private static List<String> kotlinDslParameters() {
            return [
                // Having this unset is now deprecated, will default to `false` in Gradle 9.0
                // TODO remove - see https://github.com/gradle/gradle/issues/26810
                '-Dorg.gradle.kotlin.dsl.skipMetadataVersionCheck=false',
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         * {@inheritDoc}
         *
         * <p>
         * This is similar to calling {@link #value(Map)} with a <code>null</code> argument.
         * </p>
         */
        @Incubating
        @Override
        MapProperty<K, V> unset();
    
        /**
         * {@inheritDoc}
         *
         * <p>
         * This is similar to calling {@link #convention(Map)} with a <code>null</code> argument.
         * </p>
         */
        @Incubating
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

         *
         * If the property has no convention set at the time this method is invoked,
         * the effect of invoking it is similar to invoking {@link #unset()}.
         */
        protected SupportsConvention setToConvention() {
            assertMutable();
            value = valueState.setToConvention();
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/deadcode.go

    			case objabi.R_USEIFACE:
    				// R_USEIFACE is a marker relocation that tells the linker the type is
    				// converted to an interface, i.e. should have UsedInIface set. See the
    				// comment below for why we need to unset the Reachable bit and re-mark it.
    				rs := r.Sym()
    				if d.ldr.IsItab(rs) {
    					// This relocation can also point at an itab, in which case it
    					// means "the Type field of that itab".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top