Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for yield (0.06 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                InputSource v4src = loc != null ? loc.getSource() : null;
                if (v4src != null) {
                    try {
                        Field field = InputSource.class.getDeclaredField("modelId");
                        field.setAccessible(true);
                        field.set(v4src, ModelProblemUtils.toId(model));
                    } catch (Throwable t) {
                        // TODO: use a lazy source ?
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                        if (v4src != null) {
                            Field field = InputSource.class.getDeclaredField("modelId");
                            field.setAccessible(true);
                            field.set(v4src, ModelProblemUtils.toId(model));
                        }
                    } catch (Throwable t) {
                        // TODO: use a lazy source ?
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// `paramKind` in the policy and leaving this field empty.
    	//
    	// - If `paramKind` is cluster-scoped, this field MUST be unset. Setting this
    	// field results in a configuration error.
    	//
    	// - If `paramKind` is namespace-scoped, the namespace of the object being
    	// evaluated for admission will be used when this field is left unset. Take
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    	// Defaults to 1. This field is alpha-level and is only honored by servers that enable the
    	// MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to
    	// Replicas-1. That means if there is any unavailable pod in the range 0 to Replicas-1, it
    	// will be counted towards MaxUnavailable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/defaults_test.go

    	// Forbidden: adding a new field `MyField *bool` and defaulting it to a non-nil value
    	// Forbidden: defaulting an existing field `MyField *bool` when it was previously not defaulted
    	// Forbidden: changing an existing default value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    //	}
    //
    // In C syntax, this struct will be
    //
    //	struct {
    //		uintptr_t Context;
    //	};
    //
    // If the Context field is 0, the context function is being called to
    // record the current traceback context. It should record in the
    // Context field whatever information is needed about the current
    // point of execution to later produce a stack trace, probably the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            failure.assertHasFileName("Build file '${buildFile.absolutePath}'")
            failure.assertHasLineNumber(4)
            failure.assertHasDescription("Configuration cache state could not be cached: field `prop` of task `:broken` of type `BrokenTaskType`: error writing value of type 'BrokenSerializable'")
            failure.assertHasCause("BOOM")
            problems.assertResultHasProblems(failure)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	// GetConfigForClient. Clients doing client-authentication may set either
    	// Certificates or GetClientCertificate.
    	//
    	// Note: if there are multiple Certificates, and they don't have the
    	// optional field Leaf set, certificate selection will incur a significant
    	// per-handshake performance cost.
    	Certificates []Certificate
    
    	// NameToCertificate maps from a certificate name to an element of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    func armBFAuxInt(lsb, width int64) arm64BitField {
    	if lsb < 0 || lsb > 63 {
    		panic("ARM(64) bit field lsb constant out of range")
    	}
    	if width < 1 || lsb+width > 64 {
    		panic("ARM(64) bit field width constant out of range")
    	}
    	return arm64BitField(width | lsb<<8)
    }
    
    // returns the lsb part of the auxInt field of arm64 bitfield ops.
    func (bfc arm64BitField) getARM64BFlsb() int64 {
    	return int64(uint64(bfc) >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. src/crypto/tls/tls_test.go

    	var c1 Config
    	v := reflect.ValueOf(&c1).Elem()
    
    	typ := v.Type()
    	for i := 0; i < typ.NumField(); i++ {
    		f := v.Field(i)
    		// testing/quick can't handle functions or interfaces and so
    		// isn't used here.
    		switch fn := typ.Field(i).Name; fn {
    		case "Rand":
    			f.Set(reflect.ValueOf(io.Reader(os.Stdin)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top