Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for darkred (0.22 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                    "cluster with a result with a non-XLA type: "
                 << result.getType();
        }
      }
      return mlir::success();
    }
    
    // Check that op marked for outside compilation has an ancestor also marked for
    // outside compilation.
    LogicalResult CheckAncestorNotOutsideComp(Operation* op) {
      if (!op->getAttrOfType<StringAttr>(kXlaOutsideCompilationAttr))
        return mlir::success();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    class Encapsulator {
     public:
      Encapsulator(string group_attribute, Graph const* graph_in)
          : group_attribute_(std::move(group_attribute)), graph_in_(graph_in) {}
    
      // Find subgraphs marked with 'group_attribute', and build a new
      // subgraph, one for each value of 'group_attribute'.
      Status SplitIntoSubgraphs(FunctionLibraryDefinition* library);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. pkg/volume/testing/testing.go

    	ExpectProvisionFailureKey = "expect-provision-failure"
    	// The node is marked as uncertain. The attach operation will fail and return timeout error
    	// for the first attach call. The following call will return successfully.
    	UncertainAttachNode = "uncertain-attach-node"
    	// The detach operation will keep failing on the node.
    	FailDetachNode = "fail-detach-node"
    	// The node is marked as timeout. The attach operation will always fail and return timeout error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. maven-core/src/site/resources/design/2.1-lifecycle-refactor.graffle

    artf824\cocoasubrtf410 {\fonttbl\f0\fswiss\fcharset77 Helvetica-Oblique;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc\pardirnatural \f0\i\fs24 \cf0 deprecated,\ marked for refactor}Bounds{{584.742, 252.673}, {104, 28}}ClassShapedGraphicFi.45520344376564026Rot{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf410 {\fonttbl\f0\fswiss\fcharset77 Helvetica-Oblique;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 11 17:19:02 UTC 2017
    - 96.7K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    }
    
    // setMarked sets the marked bit in the markbits, atomically.
    func (m markBits) setMarked() {
    	// Might be racing with other updates, so use atomic update always.
    	// We used to be clever here and use a non-atomic update in certain
    	// cases, but it's not worth the risk.
    	atomic.Or8(m.bytep, m.mask)
    }
    
    // setMarkedNonAtomic sets the marked bit in the markbits, non-atomically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    					t.Fatalf("volume %s should not throw fsResizeRequired error: %v", volumeName, podExistErr)
    				}
    			} else {
    				if !cache.IsFSResizeRequiredError(podExistErr) {
    					t.Fatalf("Volume should be marked as fsResizeRequired, but receive unexpected error: %v", podExistErr)
    				}
    				go reconciler.Run(wait.NeverStop)
    
    				waitErr := retryWithExponentialBackOff(testOperationBackOffDuration, func() (done bool, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// properly handle the cases when an operation is not supported (i.e., return
    /// the corresponding `Status` value).
    ///
    /// REQUIRED OPERATIONS: All required operations are marked as such, including
    /// operations which are conditionally required. If the presence of an operation
    /// `foo` requires operation `bar` to be present, this is specified in `foo`. If
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    	// The finalizer goroutine should not show up in most profiles, since it's
    	// marked as a system goroutine when idle.
    	t.Run("finalizer not present", func(t *testing.T) {
    		var w strings.Builder
    		goroutineProf.WriteTo(&w, 1)
    		prof := w.String()
    		if includesFinalizer(prof) {
    			t.Errorf("profile includes finalizer (but finalizer should be marked as system):\n%s", prof)
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    	flag.BoolVar(&debug, "d", debug, "enable debugging of bootstrap process")
    	flag.BoolVar(&distpack, "distpack", distpack, "write distribution files to pkg/distpack")
    	flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
    	flag.BoolVar(&noBanner, "no-banner", noBanner, "do not print banner")
    	flag.BoolVar(&noClean, "no-clean", noClean, "print deprecation warning")
    
    	xflagparse(0)
    
    	if noClean {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            failureDescriptionContains("Reason: This property isn't marked as optional and no value has been configured.")
        }
    
        def "injection by name does not fail validation if service is not found but property marked as @Optional"() {
            given:
            serviceImplementation()
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top