Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 197 for light (0.07 sec)

  1. tests/integration/ambient/baseline_test.go

    		// Non-HBONE clients will attempt to bypass the waypoint
    		if !src.Config().WaypointClient() && dst.Config().HasAnyWaypointProxy() && !src.Config().HasSidecar() {
    			// TODO currently leads to no L7 processing, in the future it might be denied
    			// opt.Check = check.Error()
    			opt.Check = tcpValidator
    		}
    
    		// Any client will attempt to bypass a workload waypoint (not both service and workload waypoint)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. src/go/printer/nodes.go

    				// again at the end (and still ws == indent). Thus, a subsequent indent
    				// by a linebreak call after a type, or in the next multi-line identList
    				// will do the right thing.
    				p.identList(par.Names, ws == indent)
    				p.print(blank)
    			}
    			// parameter type
    			p.expr(stripParensAlways(par.Type))
    			prevLine = parLineEnd
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    The set of type-safe model accessors available is calculated right before evaluating the script body, immediately after the `plugins {}` block.
    Any model elements contributed after that point do not work with type-safe model accessors.
    For example, this includes any configurations you might define in your own build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// initial and resync watch lists to storage.
    	storageWatchListPageSize = int64(10000)
    	// defaultBookmarkFrequency defines how frequently watch bookmarks should be send
    	// in addition to sending a bookmark right before watch deadline.
    	//
    	// NOTE: Update `eventFreshDuration` when changing this value.
    	defaultBookmarkFrequency = time.Minute
    )
    
    // Config contains the configuration for a given Cache.
    type Config struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                else -> error("Unexpected ${element::class}")
            }
        }
    
        /**
         * Returns `true` if adding [classToImport] import to the [file] might alter or break the
         * resolve of existing references in the file.
         *
         * N.B.: At the moment it might have both false positives and false negatives, since it does not
         * check all possible references.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    						// All local symbols share the same TOC pointer. This caller has a valid TOC
    						// pointer in R2. Calls into a Go symbol preserve R2. No call stub is needed.
    					} else {
    						// This caller has a TOC pointer. The callee might clobber it. R2 needs to be saved
    						// and restored.
    						if sym, firstUse := genstub(ctxt, ldr, r, i, s, STUB_TOC); firstUse {
    							stubs = append(stubs, sym)
    						}
    					}
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

            rewriter.create<DivOp>(op.getLoc(), quant_diff, float_diff);
    
        // During quantization, the quantized min/max values may not line up
        // perfectly with the specified min/max. Nudge them into the right range.
        auto min_scaled =
            rewriter.create<DivOp>(op.getLoc(), float_min, quant_to_float);
        auto min_scaled_sub =
            rewriter.create<SubOp>(op.getLoc(), quant_min, min_scaled);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. src/go/build/build.go

    Found:
    	if p.Root != "" {
    		p.SrcRoot = ctxt.joinPath(p.Root, "src")
    		p.PkgRoot = ctxt.joinPath(p.Root, "pkg")
    		p.BinDir = ctxt.joinPath(p.Root, "bin")
    		if pkga != "" {
    			// Always set PkgTargetRoot. It might be used when building in shared
    			// mode.
    			p.PkgTargetRoot = ctxt.joinPath(p.Root, pkgtargetroot)
    
    			// Set the install target if applicable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      int num_new_results_;
    };
    
    // Analyzes resources that are read or written within attached regions.
    LogicalResult RegionResourceHoister::Analyze() {
      // Hoisting of child regions might have created opportunity for store-load
      // forwarding.
      for (Region& region : op_->getRegions()) {
        ForwardStoreToLoad(&region.front());
      }
    
      llvm::SetVector<Value> all_resources;
      bool is_func = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p>The multimap supports mapping removal, which removes the corresponding mapping from the map.
       * It does not support any operations which might add mappings, such as {@code put}, {@code
       * putAll} or {@code replaceValues}.
       *
       * <p>The returned multimap will be serializable if the specified map is serializable.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top