Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 285 for capture2 (0.17 sec)

  1. src/cmd/compile/internal/ir/func.go

    func ClosureDebugRuntimeCheck(clo *ClosureExpr) {
    	if base.Debug.Closure > 0 {
    		if clo.Esc() == EscHeap {
    			base.WarnfAt(clo.Pos(), "heap closure, captured vars = %v", clo.Func.ClosureVars)
    		} else {
    			base.WarnfAt(clo.Pos(), "stack closure, captured vars = %v", clo.Func.ClosureVars)
    		}
    	}
    	if base.Flag.CompilingRuntime && clo.Esc() == EscHeap && !clo.IsGoWrap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/log/slog/logger.go

    	// set to, which is correct.
    	// This can occur with SetDefault(Default()).
    	// See TestSetDefault.
    	if _, ok := l.Handler().(*defaultHandler); !ok {
    		capturePC := log.Flags()&(log.Lshortfile|log.Llongfile) != 0
    		log.SetOutput(&handlerWriter{l.Handler(), &logLoggerLevel, capturePC})
    		log.SetFlags(0) // we want just the log message, no time or location
    	}
    }
    
    // handlerWriter is an io.Writer that calls a Handler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. cmd/globals.go

    	globalBrowserConfig browser.Config
    
    	// This flag is set to 'true' when MINIO_UPDATE env is set to 'off'. Default is false.
    	globalInplaceUpdateDisabled = false
    
    	// Captures site name and region
    	globalSite config.Site
    
    	// MinIO local server address (in `host:port` format)
    	globalMinioAddr = ""
    
    	// MinIO default port, can be changed through command line.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. hack/update-vendor.sh

      # collect 'replace' directives that unconditionally pin versions (old=new@version)
      local replace_filter='(.Old.Version == null) and (.New.Version != null)'
    
      # Capture local require/replace directives before running any go commands that can modify the go.mod file
      local require_json="${local_tmp_dir}/require.json"
      local replace_json="${local_tmp_dir}/replace.json"
      go mod edit -json \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      // Drop unused results.
      EliminateUnusedResultsForWhile(op);
      return success();
    }
    
    // Canonicalizes region based if/case and cluster operations. If the same
    // captured resource typed value is used for all region results, then that value
    // is forwared to the result and the result is dropped.
    LogicalResult CanonicalizeRegionIfCaseCluster(Operation *op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

              return new Type[] {new TypeCapture<P>() {}.capture()};
            }
    
            @Override
            public Type getOwnerType() {
              return new TypeCapture<O>() {}.capture();
            }
    
            @Override
            public Type getRawType() {
              return new TypeCapture<T>() {}.capture();
            }
          };
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

              return new Type[] {new TypeCapture<P>() {}.capture()};
            }
    
            @Override
            public Type getOwnerType() {
              return new TypeCapture<O>() {}.capture();
            }
    
            @Override
            public Type getRawType() {
              return new TypeCapture<T>() {}.capture();
            }
          };
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    	// This is not part of the Kubernetes API and could change.
    	if !strings.Contains(capturedOutput, `"Timeout or abort while handling" logger="UnhandledError" method="GET" URI="/" auditID=""`) {
    		t.Errorf("unexpected output captured actual = %v", capturedOutput)
    	}
    }
    
    type panicOnNonReuseTransport struct {
    	Transport   http.RoundTripper
    	gotConnSeen bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/image_grad_test.cc

      // double for the jacobian to capture the higher precision
      // between X_T and Y_T.
      TestResize<double, float, double>(RESIZE_BILINEAR);
    }
    
    TEST_F(ImageGradTest, TestBicubic) {
      TestResizedShape(RESIZE_BICUBIC);
      TestResize<float, float, float>(RESIZE_BICUBIC);
      // Note that Y_T is always float for this op. We choose
      // double for the jacobian to capture the higher precision
      // between X_T and Y_T.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 04:08:05 UTC 2019
    - 12.1K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

             */
            INCREMENTAL,
    
            /**
             * Work is not capable of incremental execution, no need to track input changes.
             */
            NON_INCREMENTAL
        }
    
        /**
         * Capture the classloader of the work's implementation type.
         * There can be more than one type reported by the work; additional types are considered in visitation order.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top