Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for abde (0.03 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: enhance the "patches" functionality to be able to patch coredns deployment. The new patch target is called "corednsdeployment" (e.g. patch file "corednsdeployment+json.json"). This makes it possible to apply custom patches to coredns deployment during "init" and "upgrade". ([#124820](https://g...
    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. src/net/http/transport.go

    		for k, v := range t.TLSNextProto {
    			npm[k] = v
    		}
    		t2.TLSNextProto = npm
    	}
    	return t2
    }
    
    // h2Transport is the interface we expect to be able to call from
    // net/http against an *http2.Transport that's either bundled into
    // h2_bundle.go or supplied by the user via x/net/http2.
    //
    // We name it with the "h2" prefix to stay out of the "http2" prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	//    its buffer was filled in (10 items)
    	// 2) the budget is refreshed once per second, so it basically wasn't
    	//    happening in the test at all
    	// 3) if the test was cpu-starved and we weren't able to consume events
    	//    from w2 ResultCh it could have happened that its buffer was also
    	//    filling in and given we no longer had timeBudget (consumed in (1))
    	//    trying to put next item was simply breaking the watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis_test.cc

        EXPECT_TRUE(has_inputs_with_mismatching_deadness);
      }
      {
        PredicateMapTy predicate_map;
        TF_ASSERT_OK(ComputePredicates(*root.graph(), &predicate_map));
    
        // In theory we should be able to tell that iv0/cond:0 and iv1/cond:0
        // produce the same deadness.  But we're not that smart today.
        EXPECT_EQ(predicate_map[ControlOutputFor(iv0)],
                  "{#true,&,*iv0/cond:0}<fr0>");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    	// Disable any ssh connection pooling by Git.
    	// If a Git subprocess forks a child into the background to cache a new connection,
    	// that child keeps stdout/stderr open. After the Git subprocess exits,
    	// os/exec expects to be able to read from the stdout/stderr pipe
    	// until EOF to get all the data that the Git subprocess wrote before exiting.
    	// The EOF doesn't come until the child exits too, because the child
    	// is holding the write end of the pipe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      }
    
      /**
       * The actual object that gets serialized. Unfortunately, readResolve() doesn't get called when a
       * circular dependency is present, so the proxy must be able to behave as the map itself.
       */
      abstract static class AbstractSerializationProxy<K, V> extends ForwardingConcurrentMap<K, V>
          implements Serializable {
        private static final long serialVersionUID = 3;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

      # The first network ("External") with hardcoded values in the script is just
      # a placeholder to create an external vSwitch. This is purely for convenience
      # to be able to remove/modify the actual HNS network ("cbr0") or rejoin the
      # nodes without a network blip. Creating a vSwitch takes time, causes network
      # blips, and it makes it more likely to hit the issue where flanneld is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            Xpp3Dom dom = null;
    
            // ----------------------------------------------------------------------
            // I would like to be able to look up the Mojo object using a key but
            // we have a limitation in modello that will be remedied shortly. So
            // for now I have to iterate through and see what we have.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/ppc64.s

    	ADD R3, R4, R5                  // 7ca41a14
    	ADDC R3, R4                     // 7c841814
    	ADDC R3, R4, R5                 // 7ca41814
    	ADDCC R3, R4, R5                // 7ca41a15
    	ADDE R3, R4                     // 7c841914
    	ADDECC R3, R4                   // 7c841915
    	ADDEV R3, R4                    // 7c841d14
    	ADDEVCC R3, R4                  // 7c841d15
    	ADDV R3, R4                     // 7c841e14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	// to that timeout plus one minute. This is a backup alarm in case
    	// the test wedges with a goroutine spinning and its background
    	// timer does not get a chance to fire.
    	// Don't set this if fuzzing, since it should be able to run
    	// indefinitely.
    	if testTimeout > 0 && testFuzz == "" {
    		// The WaitDelay for the test process depends on both the OS I/O and
    		// scheduling overhead and the amount of I/O generated by the test just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top