Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 4,335 for look (0.06 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/StatementLabelsScriptTransformer.java

        @Override
        protected int getPhase() {
            return Phases.CANONICALIZATION;
        }
    
        @Override
        public void call(final SourceUnit source) throws CompilationFailedException {
            // currently we only look in script code; could extend this to build script classes
            AstUtils.visitScriptCode(source, new ClassCodeVisitorSupport() {
                @Override
                protected SourceUnit getSourceUnit() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 22 10:43:11 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. istioctl/pkg/util/handlers/handlers.go

    	if idx := strings.LastIndex(name, "/"); idx > 0 {
    		// If there is a / in it, we need to handle differently. This is resourcetype/name.namespace.
    		// However, resourcetype can have . in it as well, so we should only look for namespace after the /.
    		separator := strings.LastIndex(name[idx:], ".")
    		if separator < 0 {
    			return name, namespace
    		}
    
    		return name[0 : idx+separator], name[idx+separator+1:]
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables.cc

                  .ok())) {
          return module.emitOpError() << "failed to look up device";
        }
    
        tensorflow::Var* var_ptr;
        if (!(device->resource_manager()
                  ->Lookup(resource_handle.container(), resource_handle.name(),
                           &var_ptr)
                  .ok())) {
          return module.emitOpError() << "failed to look up resource value";
        }
        tensorflow::core::RefCountPtr<Var> var(var_ptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/GradlePropertiesController.java

         *
         * This method should be called only once per build but multiple calls with the
         * same argument are allowed.
         *
         * @param settingsDir directory where to look for the {@code gradle.properties} file
         * @param setSystemProperties should system properties be set or not
         * @throws IllegalStateException if called with a different argument in the same build
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/runtime/mpallocbits.go

    		return packPallocSum(start, most, cur)
    	}
    	// Now look inside each uint64 for runs of zeros.
    	// All uint64s must be nonzero, or we would have aborted above.
    outer:
    	for i := 0; i < len(b); i++ {
    		x := b[i]
    
    		// Look inside this uint64. We have a pattern like
    		// 000000 1xxxxx1 000000
    		// We need to look inside the 1xxxxx1 for any contiguous
    		// region of zeros.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/VersionMappingStrategy.java

        /**
         * A short hand method to configure the variants which matches the provided Usage attribute.
         * This is the recommended way to configure the mapping strategy for the general case.
         * @param usage the usage to look for
         * @param action the configuration action
         */
        void usage(String usage, Action<? super VariantVersionMappingStrategy> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. internal/http/check_port_linux.go

    	lc := &net.ListenConfig{
    		Control: func(network, address string, c syscall.RawConn) error {
    			c.Control(func(fdPtr uintptr) {
    				if opts.Interface != "" {
    					// When interface is specified look for specifically port availability on
    					// the specified interface if any.
    					_ = syscall.SetsockoptString(int(fdPtr), syscall.SOL_SOCKET, syscall.SO_BINDTODEVICE, opts.Interface)
    				}
    			})
    			return nil
    		},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 21:12:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelRuleDslDetectionIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class NestedModelRuleDslDetectionIntegrationTest extends AbstractIntegrationSpec {
        def "rules can contain arbitrary code that includes closures that look like nested rules"() {
            buildFile << '''
    class UnmanagedThing {
        def getSomeProp() {
            return this
        }
        def conf(Closure cl) {
            cl.delegate = this
            cl.call()
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/callee.go

    // a function, method, builtin, or variable.
    //
    // Functions and methods may potentially have type parameters.
    func Callee(info *types.Info, call *ast.CallExpr) types.Object {
    	fun := astutil.Unparen(call.Fun)
    
    	// Look through type instantiation if necessary.
    	isInstance := false
    	switch fun.(type) {
    	case *ast.IndexExpr, *ast.IndexListExpr:
    		// When extracting the callee from an *IndexExpr, we need to check that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/build-boring.sh

    ' >/usr/local/bin/clang
    echo '#!/bin/bash
    exec clang++-'$ClangV' -DGOBORING -fPIC "$@"
    ' >/usr/local/bin/clang++
    chmod +x /usr/local/bin/clang /usr/local/bin/clang++
    
    # The BoringSSL tests use Go, and cgo would look for gcc.
    export CGO_ENABLED=0
    
    # Modify the support code crypto/mem.c (outside the FIPS module)
    # to not try to use weak symbols, because they don't work with some
    # Go toolchain / clang toolchain combinations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top