Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for pass2 (0.12 sec)

  1. src/reflect/value.go

    	}
    }
    
    // arrayAt returns the i-th element of p,
    // an array whose elements are eltSize bytes wide.
    // The array pointed at by p must have at least i+1 elements:
    // it is invalid (but impossible to check here) to pass i >= len,
    // because then the result will point outside the array.
    // whySafe must explain why i < len. (Passing "i < len" is fine;
    // the benefit is to surface this assumption at the call site.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasOptions = 1;
    
      let hasFolder = 1;
    }
    
    // If there is a change in supporting more types in the TFLite cast op kernel,
    // the While loop outline pass should be updated since it inserts cast op(s)
    // after the TF -> TFL legalization pass is done.
    // LINT.IfChange
    def TFL_CastOp : TFL_Op<"cast", [
        Pure,
        SameOperandsAndResultShape]> {
      let summary = "Cast operator";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    		volumeSpecMap[volumeAttached.VolumeSpec] = volumeAttached.VolumeName
    	}
    
    	volumesAreAttachedFunc := func() volumetypes.OperationContext {
    
    		// For each volume plugin, pass the list of volume specs to VolumesAreAttached to check
    		// whether the volumes are still attached.
    		for pluginName, volumesSpecs := range volumesPerPlugin {
    			attachableVolumePlugin, err :=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    #include "mlir/IR/SymbolTable.h"  // from @llvm-project
    #include "mlir/IR/Types.h"  // from @llvm-project
    #include "mlir/IR/Verifier.h"  // from @llvm-project
    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "tensorflow/cc/saved_model/constants.h"
    #include "tensorflow/cc/saved_model/loader_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	if err := nodeController.monitorNodeHealth(ctx); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    	// 4. do NoExecute taint pass
    	// when processing with node0, condition.Status is NodeReady, and return true with default case
    	// then remove the set value and queue value both, the taint job never stuck
    	nodeController.doNoExecuteTaintingPass(ctx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  6. pkg/apis/batch/validation/validation_test.go

    			if errs := ValidateCronJobCreate(&v, corevalidation.PodValidationOptions{}); len(errs) != 0 {
    				t.Errorf("expected success for %s: %v", k, errs)
    			}
    
    			// Update validation should pass same success cases
    			// copy to avoid polluting the testcase object, set a resourceVersion to allow validating update, and test a no-op update
    			v = *v.DeepCopy()
    			v.ResourceVersion = "1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    	accept       string
    	expectAccept string
    	compressed   bool
    }{
    	// Requests with no accept-encoding header use transparent compression
    	{"", "gzip", false},
    	// Requests with other accept-encoding should pass through unmodified
    	{"foo", "foo", false},
    	// Requests with accept-encoding == gzip should be passed through
    	{"gzip", "gzip", true},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        combiner = null;
        // combiner should be collected even if the future it returns never completes.
        GcFinalization.awaitClear(combinerRef);
      }
    
      /*
       * TODO(cpovirk): maybe pass around TestFuture instances instead of
       * ListenableFuture instances
       */
    
      /**
       * A future in {@link TestFutureBatch} that also has a name for debugging purposes and a {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        combiner = null;
        // combiner should be collected even if the future it returns never completes.
        GcFinalization.awaitClear(combinerRef);
      }
    
      /*
       * TODO(cpovirk): maybe pass around TestFuture instances instead of
       * ListenableFuture instances
       */
    
      /**
       * A future in {@link TestFutureBatch} that also has a name for debugging purposes and a {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. src/debug/elf/elf.go

    func stringName(i uint32, names []intName, goSyntax bool) string {
    	for _, n := range names {
    		if n.i == i {
    			if goSyntax {
    				return "elf." + n.s
    			}
    			return n.s
    		}
    	}
    
    	// second pass - look for smaller to add with.
    	// assume sorted already
    	for j := len(names) - 1; j >= 0; j-- {
    		n := names[j]
    		if n.i < i {
    			s := n.s
    			if goSyntax {
    				s = "elf." + s
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top