Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Headless (0.17 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Services implement a field selector for the ClusterIP and Type fields.
      Kubelet uses the fieldselector on Services to avoid watching for Headless Services and reduce the memory consumption. ([#123905](https://github.com/kubernetes/kubernetes/pull/123905), [@aojea](https://github.com/aojea)) [SIG Apps, Node and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: {{.Resolution}}
      location: {{.Location}}
      endpoints:
      # we send directly to a Pod IP here. This is essentially headless
      - address: {{.IngressIp}} # TODO won't work with DNS resolution tests
        ports:
          http: {{.IngressHttpPort}}`).
    				WithParams(param.Params{}.SetWellKnown(param.Namespace, apps.Namespace))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

      // node in `should_revisit` denotes that the deadness flowing out from any
      // output from said node may have changed.  This is fine; only switches
      // propagate different deadness along different output edges, and since the
      // delta is solely due to the input *values* (and not input deadness), the
      // delta should not change in the second iteration.
      std::vector<bool> should_revisit;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      Graph* graph = options.graph->get();
      FunctionLibraryDefinition* flib_def = options.flib_def;
    
      // Deadness analysis expects a graph with source and sink edges properly
      // connected but sometimes the incoming graph does not follow this invariant.
      // So fix up the source and sink edges before calling into deadness analysis.
      FixupSourceAndSinkEdges(graph);
    
      for (Node* n : graph->nodes()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output add0 = ops::Add(root.WithOpName("add0"), iv0, iv1);
      Output add1 = ops::Add(root.WithOpName("add1"), iv1, iv2);
    
      // NB!  iv0 and iv1 are equivalent and a smarter deadness analysis would have
      // noticed that.  Today we are pessimistic here because we assign an
      // uninterpreted symbol to merges with backedges.
    
      VLogGraphIfAsked(*root.graph());
    
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/go/parser/parser.go

    	tok token.Token // one token look-ahead
    	lit string      // token literal
    
    	// Error recovery
    	// (used to limit the number of calls to parser.advance
    	// w/o making scanning progress - avoids potential endless
    	// loops across multiple parser functions during error recovery)
    	syncPos token.Pos // last synchronization position
    	syncCnt int       // number of parser.advance calls without progress
    
    	// Non-syntactic parser control
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/binder_test.go

    //  5. When 3. does not do any changes, finish the tests and compare final set
    //     of volumes/claims with expected claims/volumes and report differences.
    //
    // Some limit of calls in enforced to prevent endless loops.
    func TestMultiSync(t *testing.T) {
    	tests := []controllerTest{
    		// Test simple binding
    		{
    			// syncClaim binds to a matching unbound volume.
    			name:            "10-1 - successful bind",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      TF_ASSERT_OK(MarkForCompilationPassTestHelper::MarkForCompilation(&graph));
    
      std::unordered_map<string, string> clusters = GetClusters(*graph);
    
      // TODO(b/118970344): ctrl_trigger_a has inputs with mismatching deadness so
      // it won't be clustered.  ctrl_trigger_b is okay to cluster but we don't
      // cluster it because of b/118970344.
      EXPECT_TRUE(clusters.empty());
    }
    
    TEST(XlaCompilationTest, RandomShape) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    	// This follows the structure of function identical in identity.go
    	// with two exceptions.
    	// 1. Symbols are compared more carefully because a <,=,> result is desired.
    	// 2. Maps are treated specially to avoid endless recursion -- maps
    	//    contain an internal data type not expressible in Go source code.
    	if t == x {
    		return CMPeq
    	}
    	if t == nil {
    		return CMPlt
    	}
    	if x == nil {
    		return CMPgt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. src/bufio/bufio_test.go

    	case err := <-c:
    		if err == nil {
    			t.Error("error expected")
    		} else if err != io.ErrNoProgress {
    			t.Error("unexpected error:", err)
    		}
    	case <-time.After(time.Second):
    		t.Error("test timed out (endless loop in ReadByte?)")
    	}
    }
    
    // A StringReader delivers its data one string segment at a time via Read.
    type StringReader struct {
    	data []string
    	step int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
Back to top