Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for Koop (0.06 sec)

  1. pkg/kubelet/kubelet_pods.go

    // the desired state of the kubelet should be reconciled with the actual state
    // in the pod worker and other pod-related components.
    //
    // This function is executed by the main sync loop, so it must execute quickly
    // and all nested calls should be asynchronous. Any slow reconciliation actions
    // should be performed by other components (like the volume manager). The duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	}
    
    	c := ctxtz{ctxt: ctxt, newprog: newprog, cursym: cursym, autosize: int32(p.To.Offset)}
    
    	buffer := make([]byte, 0)
    	changed := true
    	loop := 0
    	nrelocs0 := len(c.cursym.R)
    	for changed {
    		if loop > 100 {
    			c.ctxt.Diag("stuck in spanz loop")
    			break
    		}
    		changed = false
    		buffer = buffer[:0]
    		for i := range c.cursym.R[nrelocs0:] {
    			c.cursym.R[nrelocs0+i] = obj.Reloc{}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertTrue(future1.wasInterrupted());
      }
    
      /**
       * Test the case where the futures are fulfilled prior to constructing the ListFuture. There was a
       * bug where the loop that connects a Listener to each of the futures would die on the last
       * loop-check as done() on ListFuture nulled out the variable being looped over (the list of
       * futures).
       */
      public void testAllAsList_doneFutures() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertTrue(future1.wasInterrupted());
      }
    
      /**
       * Test the case where the futures are fulfilled prior to constructing the ListFuture. There was a
       * bug where the loop that connects a Listener to each of the futures would die on the last
       * loop-check as done() on ListFuture nulled out the variable being looped over (the list of
       * futures).
       */
      public void testAllAsList_doneFutures() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    		if len(ss.Ports) == 0 {
    			// It's possible to have headless services with no ports.
    			count += len(ss.Addresses)
    			for i := range ss.Addresses {
    				if len(list) == max {
    					more = true
    					// the next loop is redundant
    					break
    				}
    				list = append(list, ss.Addresses[i].IP)
    			}
    			// avoid nesting code too deeply
    			continue
    		}
    
    		// "Normal" services with ports defined.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    				Name: "http",
    			},
    			Count: 1,
    			HTTP: echo.HTTP{
    				HTTP2: true,
    			},
    			Check: check.OK(),
    		},
    	})
    }
    
    // trafficLoopCases contains tests to ensure traffic does not loop through the sidecar
    func trafficLoopCases(t TrafficContext) {
    	for _, c := range t.Apps.A {
    		for _, d := range t.Apps.B {
    			for _, port := range []int{15001, 15006} {
    				c, d, port := c, d, port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

        # e.g. "kubernetes-12345678-90ab-cdef-1234-567890abcdef". The name is
        # determined by the node controller on the master.
        # Note that this is currently a noop, as synchronously deleting the node MIG
        # first allows the master to cleanup routes itself.
        local TRUNCATED_PREFIX="${INSTANCE_PREFIX:0:26}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    ### Other notable changes
    
    * Fix issue in reconstruct volume data when kubelet restarts ([#36616](https://github.com/kubernetes/kubernetes/pull/36616), [@jingxu97](https://github.com/jingxu97))
    * Add sync state loop in master's volume reconciler ([#34859](https://github.com/kubernetes/kubernetes/pull/34859), [@jingxu97](https://github.com/jingxu97))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // 4, 16, and 64 are magic constants, see runtime/mkduff.go
    (Zero [s] ptr mem)
    	&& s%16 == 0 && s > 64 && s <= 16*64
    	&& !config.noDuffDevice =>
    	(DUFFZERO [4 * (64 - s/16)] ptr mem)
    
    // large zeroing uses a loop
    (Zero [s] ptr mem)
    	&& s%16 == 0 && (s > 16*64 || config.noDuffDevice) =>
    	(LoweredZero
    		ptr
    		(ADDconst <ptr.Type> [s-16] ptr)
    		mem)
    
    // moves
    (Move [0] _   _   mem) => mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Converts one NodeDef from the input GraphDef into an Operation and
      // inserts it into the MLIR module using builder_.
      Status ConvertNode(const Node& node);
    
      // If the input graph represents a while-loop, the edges pointing from a
      // "NextIteration" node to a "Merge" node add cyclic dependencies and make the
      // topological sorting impossible. We need to remove these edges from the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top