Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 647 for assign_id (1.79 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/helper.go

    	return fmt.Errorf("couldn't assign/convert %v to %v", srcValue.Type(), field.Type())
    }
    
    // Field puts the value of fieldName, which must be a member of v, into dest,
    // which must be a variable to which this field's value can be assigned.
    func Field(v reflect.Value, fieldName string, dest interface{}) error {
    	field := v.FieldByName(fieldName)
    	if !field.IsValid() {
    		return fmt.Errorf("couldn't find %v field in %T", fieldName, v.Interface())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 22:54:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/doc.go

    // directions should prefix their messages with this channel byte. Used for remote execution,
    // the channel numbers are by convention defined to match the POSIX file-descriptors assigned
    // to STDIN, STDOUT, and STDERR (0, 1, and 2). No other conversion is performed on the raw
    // subprotocol - writes are sent as they are received by the server.
    //
    // Example client session:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/caching/configuration/BuildCacheConfiguration.java

         *
         * @param configuration the action to execute against the currently configured remote cache.
         *
         * @throws IllegalStateException If no remote cache has been assigned yet
         */
        void remote(Action<? super BuildCache> configuration);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 27 16:11:30 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/controller/repair.go

    				c.recorder.Eventf(&svc, nil, v1.EventTypeWarning, "ClusterIPAlreadyAllocated", "ClusterIPAllocation", "Cluster IP [%v]:%s was assigned to multiple services; please recreate service", family, ip)
    				runtime.HandleError(fmt.Errorf("the cluster IP [%v]:%s for service %s/%s was assigned to multiple services; please recreate", family, ip, svc.Name, svc.Namespace))
    			case err.(*ipallocator.ErrNotInRange):
    				// cluster IP is out of range
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-precedence.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:80
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 2
        conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            "java home"      | "when configured"            | null     | "other"      | null           | null              | "other"
            "assigned tool"  | "when configured"            | "other"  | null         | null           | null              | "other"
            "executable"     | "over java extension"        | null     | null         | "other"        | "current"         | "other"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/context.go

    	// cleaned up.
    	TrackResource(r Resource) ID
    
    	// GetResource accepts either a *T or *[]*T where T implements Resource.
    	// For a non-slice pointer, the value will be assigned to the first matching resource.
    	// For a slice pointer, the matching resources from this scope and its parent(s) will be appended.
    	// If ref is not a pointer, an error will be returned.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/BuildDefinition.java

            this.fromBuild = fromBuild;
            this.pluginBuild = pluginBuild;
        }
    
        /**
         * Returns a name to use for this build. Use {@code null} to have a name assigned.
         */
        @Nullable
        public String getName() {
            return name;
        }
    
        /**
         * Returns the root directory for this build, when known.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 19 21:33:07 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. pkg/proxy/node.go

    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy/config"
    	"k8s.io/kubernetes/pkg/proxy/healthcheck"
    )
    
    // NodePodCIDRHandler handles the life cycle of kube-proxy based on the node PodCIDR assigned
    // Implements the config.NodeHandler interface
    // https://issues.k8s.io/111321
    type NodePodCIDRHandler struct {
    	mu       sync.Mutex
    	podCIDRs []string
    	logger   klog.Logger
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java

        // lifecycles. The project builder needs to now what default plugin information needs to be
        // merged into POM being built. Once the POM builder has this plugin information, versions can be assigned
        // by the POM builder because they will have to be defined in plugin management. Once this is setComplete then it
        // can be passed back so that the default configuration information can be populated.
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top