Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 103 for spill (0.08 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      return s;
    }
    
    // Rewrites shape inference graph for outside compilation:
    // 1) If XlaSendFromHost also exists in `host_graph`, copy nodes from
    //    `host_graph`. Because we might still have outside compilation to outside
    //    compilation placeholder nodes in shape inference graph, which will prevent
    //    us from inferring XlaSendFromHost shape. But in `host_graph`, we already
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					foo:
    						type: string
    			`),
    			oldObj: mustUnstructured(`
    				foo: bar
    			`),
    			// Fieldpath is on unchanged field `foo`, but since rule is on the
    			// changed parent object we still get an error
    			newObj: mustUnstructured(`
    				foo: bar
    				bar: invalid
    			`),
    			errors: []string{
    				`root.foo: Invalid value: "object": gotta be baz`,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      fi
    
      KUBELET_ARGS="${flags}"
    }
    
    # Sets KUBELET_ARGS with the kubelet flags for Windows nodes.
    # Note that to configure flags with explicit empty string values, we can't escape
    # double-quotes, because they still break sc.exe after expansion in the
    # binPath parameter, and single-quotes get parsed as characters instead of
    # string delimiters.
    function construct-windows-kubelet-flags {
      local flags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

        Node* node = graph->graph.FindNodeId(*pos);
        // FindNodeId() returns nullptr for nodes that have been deleted.
        // We aren't currently allowing nodes to be deleted, but it is safer
        // to still check.
        if (node != nullptr) return ToOperation(node);
        *pos += 1;
      }
    
      // No more nodes.
      return nullptr;
    }
    
    void TF_GraphToGraphDef(TF_Graph* graph, TF_Buffer* output_graph_def,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CacheTest.kt

        // The URL will remain available if hasNext() returned true...
        val i = cache.urls()
        assertThat(i.hasNext()).isTrue()
    
        // ...so even when we evict the element, we still get something back.
        cache.evictAll()
        assertThat(i.next()).isEqualTo(url.toString())
    
        // Remove does nothing. But most importantly, it doesn't throw!
        i.remove()
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    			}
    			xdstest.ValidateListeners(t, builder.gatewayListeners)
    
    			// gateways bind to port, but exact_balance can still be used
    			for _, l := range builder.gatewayListeners {
    				if l.ConnectionBalanceConfig != nil {
    					t.Fatalf("expected connection balance config to be empty, found %v", l.ConnectionBalanceConfig)
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * in which {@code Cursor} is {@code Closeable}. To support older versions, pass a wrapper
         * {@code Closeable} with a method reference like {@code cursor::close}.
         *
         * <p>Note that this method is still binary-compatible between flavors because the erasure of
         * its parameter type is {@code Object}, not {@code AutoCloseable} or {@code Closeable}.
         *
         * @param closeable the object to be closed (see notes above)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    						Message: "Matched rules at index 0",
    					},
    				},
    			},
    		},
    		// In the current mechanism, the job controller adds Complete condition to Job
    		// even if some running pods still remain.
    		// So, we need to revisit here before we graduate the JobSuccessPolicy to beta.
    		// TODO(#123775): A Job might finish with ready!=0
    		// REF: https://github.com/kubernetes/kubernetes/issues/123775
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        `tf_device.launch` with host device attribute. It extracts the ops and wrap
        them in `tf_device.launch` with tpu device attribute so that ops can be
        run on TPU instead of CPU while still being compiled on host.
      }];
    
      let dependentDialects = [
        "mhlo::MhloDialect",
        "tf_device::TensorFlowDeviceDialect"
      ];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

                for example when your structure is flat, or deeper without an intermediate parent POM.
                However, the group ID, artifact ID and version are still required,
                and must match the file in the location given, or it will revert to the repository for the POM.
                This feature is only for enhancing the development in a local checkout of that project.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top