Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,607 for Invokes (0.32 sec)

  1. src/image/color/color.go

    }
    
    // Model can convert any [Color] to one from its own color model. The conversion
    // may be lossy.
    type Model interface {
    	Convert(c Color) Color
    }
    
    // ModelFunc returns a [Model] that invokes f to implement the conversion.
    func ModelFunc(f func(Color) Color) Model {
    	// Note: using *modelFunc as the implementation
    	// means that callers can still use comparisons
    	// like m == RGBAModel. This is not possible if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. src/os/signal/doc.go

    If the non-Go code starts a new thread, changes the signal mask, and
    then invokes a Go function in that thread, the Go runtime will
    automatically unblock certain signals: the synchronous signals,
    SIGILL, SIGTRAP, SIGSTKFLT, SIGCHLD, SIGPROF, SIGCANCEL, and
    SIGSETXID. When the Go function returns, the non-Go signal mask will
    be restored.
    
    If the Go signal handler is invoked on a non-Go thread not running Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/cgo/doc.go

    file containing it. Then it invokes the host linker (usually gcc) to
    combine the go.o object file and any supporting non-Go code into a
    final executable. External linking avoids the dynamic library
    requirement but introduces a requirement that the host linker be
    present to create such a binary.
    
    Most builds both compile source code and invoke the linker to create a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. src/cmd/internal/objabi/flag.go

    		// include that difference.
    		if goexperiment := buildcfg.Experiment.String(); goexperiment != "" {
    			p = " X:" + goexperiment
    		}
    	}
    
    	// The go command invokes -V=full to get a unique identifier
    	// for this tool. It is assumed that the release version is sufficient
    	// for releases, but during development we include the full
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ComparisonChain.java

     * correctly, calls must be chained as illustrated above.
     *
     * <p>Performance note: Even though the {@code ComparisonChain} caller always invokes its {@code
     * compare} methods unconditionally, the {@code ComparisonChain} implementation stops calling its
     * inputs' {@link Comparable#compareTo compareTo} and {@link Comparator#compare compare} methods as
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 17:28:11 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  6. pkg/registry/rbac/validation/rule.go

    	// can be made on the basis of those rules that are found.
    	RulesFor(user user.Info, namespace string) ([]rbacv1.PolicyRule, error)
    
    	// VisitRulesFor invokes visitor() with each rule that applies to a given user in a given namespace, and each error encountered resolving those rules.
    	// If visitor() returns false, visiting is short-circuited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 11.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    =====
    
    == Step 2. Understanding the Gradle Wrapper
    The Gradle Wrapper is the preferred way of starting a Gradle build.
    The Wrapper downloads (if needed) and then invokes a specific version of Gradle declared in the build.
    
    In your newly created project, take a look at the files used by the Gradle Wrapper first.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

            assertNotNull(classUnderTest.getGreeting(), "app should have a greeting");
        }
    }
    ----
    
    The generated test class has a single _JUnit Jupiter_ test.
    The test instantiates the `App` class, invokes a method on it, and checks that it returns the expected value.
    
    == Step 5. Run the App
    
    The Application plugin, which was automatically added by `gradle init`, facilitates creating an executable JVM application:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/escape/UnicodeEscaper.java

       *
       * <p><b>Note:</b> When implementing an escaper, it is a good idea to override this method for
       * efficiency. The base class implementation determines successive Unicode code points and invokes
       * {@link #escape(int)} for each of them. If the semantics of your escaper are such that code
       * points in the supplementary range are either all escaped or all unescaped, this method can be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/escape/UnicodeEscaper.java

       *
       * <p><b>Note:</b> When implementing an escaper, it is a good idea to override this method for
       * efficiency. The base class implementation determines successive Unicode code points and invokes
       * {@link #escape(int)} for each of them. If the semantics of your escaper are such that code
       * points in the supplementary range are either all escaped or all unescaped, this method can be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
Back to top