Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 89 for isGetter (0.17 sec)

  1. src/go/build/constraint/expr.go

    		}
    		p.pos = p.i
    		p.i += 2
    		p.tok = p.s[p.pos:p.i]
    		return
    	}
    
    	tag := p.s[p.i:]
    	for i, c := range tag {
    		if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
    			tag = tag[:i]
    			break
    		}
    	}
    	if tag == "" {
    		c, _ := utf8.DecodeRuneInString(p.s[p.i:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

                        @ReplacedAccessor(value = AccessorType.GETTER, name = "getDestinationDir"),
                        @ReplacedAccessor(value = AccessorType.SETTER, name = "setDestinationDir"),
                        @ReplacedAccessor(value = AccessorType.SETTER, name = "destinationDir", originalType = File.class)
                    })
                    public abstract DirectoryProperty getDestinationDirectory();
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                                }
                            } else {
                                // Coerce the value to the type accepted by the property setter and invoke the setter directly
                                Class setterType = metaBeanProperty.getSetter().getParameterTypes()[0].getTheClass();
                                value = propertySetTransformer.transformValue(setterType, value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  4. schema/field.go

    					field.ReflectValueOf(ctx, value).Set(reflectV.Elem())
    					return
    				} else {
    					err = setter(ctx, value, reflectV.Elem().Interface())
    				}
    			} else if valuer, ok := v.(driver.Valuer); ok {
    				if v, err = valuer.Value(); err == nil {
    					err = setter(ctx, value, v)
    				}
    			} else if _, ok := v.(clause.Expr); !ok {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. src/cmd/go/internal/imports/build.go

    func matchTag(name string, tags map[string]bool, prefer bool) bool {
    	// Tags must be letters, digits, underscores or dots.
    	// Unlike in Go identifiers, all digits are fine (e.g., "386").
    	for _, c := range name {
    		if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
    			return false
    		}
    	}
    
    	if tags["*"] && name != "" && name != "ignore" {
    		// Special case for gathering all possible imports:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cluster_util.cc

        }
        return frame_id;
      };
    
      for (Edge const* edge : graph->edges()) {
        if (edge->dst()->IsEnter() || edge->src()->IsExit()) {
          const char* src_type = "pre-enter";
          const char* dst_type = "post-exit";
          int src = edge->src()->id();
          int dst = edge->dst()->id();
    
          if (edge->dst()->IsEnter()) {
            // Lift edges to an "Enter" node to the corresponding frame node.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. src/text/template/funcs.go

    func goodName(name string) bool {
    	if name == "" {
    		return false
    	}
    	for i, r := range name {
    		switch {
    		case r == '_':
    		case i == 0 && !unicode.IsLetter(r):
    			return false
    		case !unicode.IsLetter(r) && !unicode.IsDigit(r):
    			return false
    		}
    	}
    	return true
    }
    
    // findFunction looks for a function in the template, and global map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. src/go/doc/comment/parse.go

    	line = strings.TrimSpace(line)
    
    	// a heading must start with an uppercase letter
    	r, _ := utf8.DecodeRuneInString(line)
    	if !unicode.IsLetter(r) || !unicode.IsUpper(r) {
    		return false
    	}
    
    	// it must end in a letter or digit:
    	r, _ = utf8.DecodeLastRuneInString(line)
    	if !unicode.IsLetter(r) && !unicode.IsDigit(r) {
    		return false
    	}
    
    	// exclude lines with illegal characters. we allow "(),"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

            StringBuilder cleanId = new StringBuilder();
            boolean previousWasDash = false;
            for (int i = 0; i < id.length(); i++) {
                char c = id.charAt(i);
                if (Character.isLetter(c)) {
                    previousWasDash = false;
                    cleanId.append(Character.toLowerCase(c));
                } else {
                    if (previousWasDash) {
                        continue;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

    import java.util.Map;
    
    import static org.gradle.internal.instrumentation.api.annotations.ReplacedAccessor.AccessorType.GETTER;
    import static org.gradle.internal.instrumentation.api.annotations.ReplacedAccessor.AccessorType.SETTER;
    import static org.gradle.internal.instrumentation.api.annotations.ReplacesEagerProperty.BinaryCompatibility.ACCESSORS_KEPT;
    
    /**
     * Main options for Java compilation.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top