Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 519 for recognizers (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaExtractionStrategy.java

    public interface ModelSchemaExtractionStrategy {
        /**
         * Potentially extracts the schema for a type. If this strategy does not recognize the type, this method should return without doing anything.
         *
         * If the strategy does recognize the type, it should call {@link ModelSchemaExtractionContext#found(org.gradle.model.internal.manage.schema.ModelSchema)} with the resulting schema, or one of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/math/big/example_test.go

    	// the fmt package recognizes it as an implementation of fmt.Scanner.
    	r := new(big.Rat)
    	_, err := fmt.Sscan("1.5000", r)
    	if err != nil {
    		log.Println("error scanning value:", err)
    	} else {
    		fmt.Println(r)
    	}
    	// Output: 3/2
    }
    
    func ExampleInt_Scan() {
    	// The Scan function is rarely used directly;
    	// the fmt package recognizes it as an implementation of fmt.Scanner.
    	i := new(big.Int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 16:15:32 UTC 2020
    - 4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Splitter.java

       * Splitter.on(',').split("foo,,bar")} returns an iterable containing {@code ["foo", "", "bar"]}.
       *
       * @param separator the character to recognize as a separator
       * @return a splitter, with default settings, that recognizes that separator
       */
      public static Splitter on(char separator) {
        return on(CharMatcher.is(separator));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/ConsoleRenderer.java

     */
    public class ConsoleRenderer {
        /**
         * Renders a path name as a file URL that is likely recognized by consoles.
         */
        public String asClickableFileUrl(File path) {
            // File.toURI().toString() leads to a URL like this on Mac: file:/reports/index.html
            // This URL is not recognized by the Mac console (too few leading slashes). We solve
            // this be creating an URI with an empty authority.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. releasenotes/notes/46437.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 46437
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 15 17:43:35 UTC 2023
    - 244 bytes
    - Viewed (0)
  6. docs/security/security.md

    | 4.x     | ✅                  | Android 5.0+ (API level 21+) and on Java 8+. |
    | 3.x     | ❌ Ended 2021-12-31 | Android 2.3+ (API level 9+) and Java 7+.     |
    
    
    ## Reporting a Vulnerability
    
    Square recognizes the important contributions the security research community
    can make. We therefore encourage reporting security issues with the code
    contained in this repository.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 27 10:19:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/CachingExcludeFactory.java

        }
    
        @Override
        public ExcludeSpec allOf(Set<ExcludeSpec> specs) {
            return caches.getAllOf(new ExcludesKey(specs), key -> delegate.allOf(key.specs));
        }
    
        /**
         * A special key which recognizes the fact union and intersection
         * are commutative.
         */
        private final static class ExcludePair {
            private final ExcludeSpec left;
            private final ExcludeSpec right;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. test/nowritebarrier.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test go:nowritebarrier and related directives.
    // This must appear to be in package runtime so the compiler
    // recognizes "systemstack".
    
    package runtime
    
    type t struct {
    	f *t
    }
    
    var x t
    var y *t
    
    //go:nowritebarrier
    func a1() {
    	x.f = y // ERROR "write barrier prohibited"
    	a2()    // no error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:21 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue13539.go

    // errorcheck
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that a label named like a package is recognized
    // as a label rather than a package and that the package
    // remains unused.
    
    package main
    
    import "math" // ERROR "imported and not used"
    
    func main() {
    math:
    	for {
    		break math
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 417 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/buildSrc/src/main/java/org/gradle/sample/transform/javamodules/ExtraModuleInfoPlugin.java

                    c -> c.getAttributes().attribute(javaModule, true));
    
            // all Jars have a javaModule=false attribute by default; the transform also recognizes modules and returns them without modification
            project.getDependencies().getArtifactTypes().getByName("jar").getAttributes().attribute(javaModule, false);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top