Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for addMove (0.26 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller.go

    		// Node specifies annotation indicating it should be managed by attach
    		// detach controller. Add it to desired state of world.
    		adc.desiredStateOfWorld.AddNode(nodeName)
    	}
    }
    
    func (adc *attachDetachController) GetNodeLabels() (map[string]string, error) {
    	return nil, fmt.Errorf("GetNodeLabels() unsupported in Attach/Detach controller")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. pkg/scheduler/scheduler_test.go

    	schedulerCache := internalcache.New(ctx, 30*time.Second)
    
    	// Add node to schedulerCache no matter it's deleted in API server or not.
    	schedulerCache.AddNode(logger, &nodeFoo)
    
    	s, fwk, err := initScheduler(ctx, schedulerCache, queue, client, informerFactory)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/graph/TraverserTest.java

          }
        };
      }
    
      private static ImmutableGraph<Character> createSingleRootGraph() {
        MutableGraph<Character> graph = GraphBuilder.directed().build();
        graph.addNode('a');
        return ImmutableGraph.copyOf(graph);
      }
    
      private static void assertEqualCharNodes(Iterable<Character> result, String expectedCharacters) {
        assertThat(ImmutableList.copyOf(result))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/graph/TraverserTest.java

          }
        };
      }
    
      private static ImmutableGraph<Character> createSingleRootGraph() {
        MutableGraph<Character> graph = GraphBuilder.directed().build();
        graph.addNode('a');
        return ImmutableGraph.copyOf(graph);
      }
    
      private static void assertEqualCharNodes(Iterable<Character> result, String expectedCharacters) {
        assertThat(ImmutableList.copyOf(result))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  5. src/net/netip/netip.go

    		byteorder.BePutUint64(ret[8:], ip.addr.lo)
    		return ret[:]
    	}
    }
    
    // Next returns the address following ip.
    // If there is none, it returns the zero [Addr].
    func (ip Addr) Next() Addr {
    	ip.addr = ip.addr.addOne()
    	if ip.Is4() {
    		if uint32(ip.addr.lo) == 0 {
    			// Overflowed.
    			return Addr{}
    		}
    	} else {
    		if ip.addr.isZero() {
    			// Overflowed
    			return Addr{}
    		}
    	}
    	return ip
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top