Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 163 for yield (0.07 sec)

  1. src/cmd/compile/internal/types2/unify.go

    		}
    
    	case *Struct:
    		// Two struct types unify if they have the same sequence of fields,
    		// and if corresponding fields have the same names, their (field) types unify,
    		// and they have identical tags. Two embedded fields are considered to have the same
    		// name. Lower-case field names from different packages are always different.
    		if y, ok := y.(*Struct); ok {
    			if x.NumFields() == y.NumFields() {
    				for i, f := range x.fields {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/Helpers.java

       */
      public abstract static class NullsBefore implements Comparator<@Nullable String>, Serializable {
        /*
         * We don't serialize this class in GWT, so we don't care about whether GWT will serialize this
         * field.
         */
        @GwtTransient private final String justAfterNull;
    
        protected NullsBefore(String justAfterNull) {
          if (justAfterNull == null) {
            throw new NullPointerException();
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. chainable_api.go

    	tx.Statement.assigns = attrs
    	return
    }
    
    // Unscoped disables the global scope of soft deletion in a query.
    // By default, GORM uses soft deletion, marking records as "deleted"
    // by setting a timestamp on a specific field (e.g., `deleted_at`).
    // Unscoped allows queries to include records marked as deleted,
    // overriding the soft deletion behavior.
    // Example:
    //    var users []User
    //    db.Unscoped().Find(&users)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            when:
            configurationCacheFails "broken"
    
            then:
            configurationCache.assertStateStoreFailed()
            failure.assertHasDescription("Configuration cache state could not be cached: field `value` of task `:broken` of type `SomeTask`: error writing value of type 'org.gradle.api.internal.provider.DefaultProvider'")
            failure.assertHasCause("broken!")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    			// Array of 1 element, check if element is fat
    			if t.NumElem() == 1 {
    				return isfat(t.Elem())
    			}
    			return true
    		case types.TSTRUCT:
    			// Struct with 1 field, check if field is fat
    			if t.NumFields() == 1 {
    				return isfat(t.Field(0).Type)
    			}
    			return true
    		}
    	}
    
    	return false
    }
    
    // WriteFuncMap writes the pointer bitmaps for bodyless function fn's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    	// because it is possible a synchronization task is queued for a job, without
    	// the managedBy field, but the job is quickly replaced by another job with
    	// the field. Then, the syncJob might be invoked for a job with the field.
    	if controllerName := managedByExternalController(sharedJob); controllerName != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        Severity.ERROR,
                        Version.BASE,
                        prefix + "systemPath",
                        d.getManagementKey(),
                        "must be omitted. This field may only be specified for a dependency with system scope.",
                        d);
            }
    
            if (request.getValidationLevel() >= ModelBuilderRequest.VALIDATION_LEVEL_MAVEN_2_0) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/deadcode.go

    				// 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".
    					rs = decodeItabType(d.ldr, d.ctxt.Arch, rs)
    				}
    				if !d.ldr.IsGoType(rs) && !d.ctxt.linkShared {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	}
    
    	fooPredicate := storage.SelectionPredicate{
    		Label: labels.SelectorFromSet(map[string]string{"foo": "true"}),
    		Field: fields.Everything(),
    	}
    	barPredicate := storage.SelectionPredicate{
    		Label: labels.SelectorFromSet(map[string]string{"bar": "true"}),
    		Field: fields.Everything(),
    	}
    
    	createWatch := func(pred storage.SelectionPredicate) watch.Interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. src/runtime/mfinal.go

    // “synchronizes before” f(x), so in general a finalizer should use a mutex
    // or other synchronization mechanism if it needs to access mutable state in x.
    // For example, consider a finalizer that inspects a mutable field in x
    // that is modified from time to time in the main program before x
    // becomes unreachable and the finalizer is invoked.
    // The modifications in the main program and the inspection in the finalizer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top