Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,466 for Assigned (0.23 sec)

  1. pkg/kubelet/userns/userns_manager.go

    		return nil, err
    	}
    
    	if kubeletMappingID%userNsLength != 0 {
    		return nil, fmt.Errorf("kubelet user assigned ID %v is not a multiple of %v", kubeletMappingID, userNsLength)
    	}
    	if kubeletMappingID < userNsLength {
    		// We don't allow to map 0, as security is circumvented.
    		return nil, fmt.Errorf("kubelet user assigned ID %v must be greater or equal to %v", kubeletMappingID, userNsLength)
    	}
    	if kubeletMappingLen%userNsLength != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerManager.java

         * broadcaster returned by {@link #getBroadcaster(Class)} for the given listener type.  However, it can also have
         * listeners assigned/removed directly to/from it.  This allows these "anonymous" broadcasters to specialize what
         * listeners receive messages.  Each call creates a new broadcaster, so that client code can create as many "facets"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/partially_decluster_pass_test.cc

      TF_ASSERT_OK(DeviceFactory::AddDevices(
          SessionOptions(), "/job:localhost/replica:0/task:0", &devices));
    
      // Scope::ToGraph loses the assigned device name since it goes through
      // GraphDef/NodeDef which does not have a field for the assigned device name.
      Node* n = FindNodeByName(*graph, "shape");
      ASSERT_NE(n, nullptr);
      n->set_assigned_device_name(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/portgen.go

    			protocol.MySQL:   tcpBase,
    			protocol.Redis:   tcpBase,
    			protocol.UDP:     tcpBase,
    		},
    		used: make(map[int]struct{}),
    	}
    }
    
    // SetUsed marks the given port as used, so that it will not be assigned by the
    // generator.
    func (g *portGenerator) SetUsed(port int) *portGenerator {
    	g.used[port] = struct{}{}
    	return g
    }
    
    // IsUsed indicates if the given port has already been used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 04 00:24:04 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/weighted.status.yaml.golden

      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:34000
          and istio-ingressgateway.istio-system.svc.domain.suffix:80
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/podresources/server_v1alpha1.go

    			ResourceName: alphaDev.ResourceName,
    			DeviceIds:    alphaDev.DeviceIds,
    		}
    		devs = append(devs, &dev)
    	}
    
    	return devs
    }
    
    // List returns information about the resources assigned to pods on the node
    func (p *v1alpha1PodResourcesServer) List(ctx context.Context, req *v1alpha1.ListPodResourcesRequest) (*v1alpha1.ListPodResourcesResponse, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 17:33:01 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/id/ConfigurationCacheableIdFactory.java

            }
    
            return newId;
        }
    
        /**
         * This method must be called whenever an object is about to be re-created with the previously assigned id
         * due to loading from the configuration cache.
         */
        public void idRecreated() {
            sequence.set(USED_ASSIGNED_ID_MARKER);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/TaskReportTask.java

     * from the command-line.</p>
     *
     * By default, this report shows only those tasks which have been assigned to a task group, so-called <i>visible</i>
     * tasks. Tasks which have not been assigned to a task group, so-called <i>hidden</i> tasks, can be included in the report
     * by enabling the command line option {@code --all}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/ContinuousIncrementalBuildOutputOriginIntegrationTest.groovy

        String originBuildInvocationId(String taskPath) {
            originBuildInvocationIdFixture.originId(taskPath)
        }
    
        void afterBuild() {
            afterExecute*.execute(executer)
        }
    
        def "new ID is assigned for each execution"() {
            given:
            def i1 = file("i1")
            def i2 = file("i2")
    
            when:
            i1.text = "1"
            i2.text = "1"
    
            buildFile << """
                task t1 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/netlink.go

    	// GetAllLocalAddressesExcept return all local addresses on the node, except from the passed dev.
    	// This is not the same as to take the diff between GetAllLocalAddresses and GetLocalAddresses
    	// since an address can be assigned to many interfaces. This problem raised
    	// https://github.com/kubernetes/kubernetes/issues/114815
    	GetAllLocalAddressesExcept(dev string) (sets.Set[string], error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 19:02:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top