Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for isGetter (0.15 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

                        bool use_optimistic_mode = false);
    
      Status GetFrameBasedTopologicalOrder(std::vector<Node*>* order);
    
      bool IsRootEnter(const Node* n) const {
        return IsEnter(n) && control_flow_info_[n->id()].parent_frame->IsSource();
      }
    
      bool IsRootExit(const Node* n) const {
        return IsExit(n) && control_flow_info_[n->id()].parent_frame->IsSource();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/go/build/build.go

    func parseWord(data []byte) (word, rest []byte) {
    	data = skipSpaceOrComment(data)
    
    	// Parse past leading word characters.
    	rest = data
    	for {
    		r, size := utf8.DecodeRune(rest)
    		if unicode.IsLetter(r) || '0' <= r && r <= '9' || r == '_' {
    			rest = rest[size:]
    			continue
    		}
    		break
    	}
    
    	word = data[:len(data)-len(rest)]
    	if len(word) == 0 {
    		return nil, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * For better compatibility with the Kotlin DSL, link:{javadocPath}/org/gradle/api/file/DuplicatesStrategy.html[CopySpec.duplicatesStrategy] is no longer nullable. The property setter no longer accepts `null` as a way
    to reset the property back to its default value. Use `DuplicatesStrategy.INHERIT` instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                }
            }
    
            // In Kotlin:
            //
            // > Boolean accessor methods (where the name of the getter starts with is and the name of
            // > the setter starts with set) are represented as properties which have the same name as
            // > the getter method. Boolean properties are visible with a `is` prefix in Kotlin
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  5. src/testing/testing.go

    				if '0' <= r && r <= '9' ||
    					'a' <= r && r <= 'z' ||
    					'A' <= r && r <= 'Z' {
    					return r
    				}
    				if strings.ContainsRune(allowed, r) {
    					return r
    				}
    			} else if unicode.IsLetter(r) || unicode.IsNumber(r) {
    				return r
    			}
    			return -1
    		}
    		pattern := strings.Map(mapper, c.Name())
    		c.tempDir, c.tempDirErr = os.MkdirTemp("", pattern)
    		if c.tempDirErr == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Lazy property assignment reduces the verbosity for Kotlin DSL when <<lazy_configuration#lazy_properties,lazy properties>> are used.
    It works for properties that are publicly seen as `final` (without a setter) and have type `Property` or `ConfigurableFileCollection`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * <code>rootProject</code> property.  The properties of this scope are readable or writable depending on the presence
     * of the corresponding getter or setter method.</li>
     *
     * <li>The extra properties of the project.  Each project maintains a map of extra properties, which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The old convention object defines the `distsDirName`, `libsDirName` and `archivesBaseName` properties with simple getter and setter methods.
    Those methods are available in the extension only to maintain backwards compatibility.
    Build scripts should solely use the properties of type `Property`:
    
    ====
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top