Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 186 for defaultNode (0.4 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

    import org.eclipse.aether.util.graph.transformer.ConflictResolver;
    
    public class DefaultNode extends AbstractNode {
    
        protected final @Nonnull InternalSession session;
        protected final @Nonnull org.eclipse.aether.graph.DependencyNode node;
        protected final boolean verbose;
    
        public DefaultNode(
                @Nonnull InternalSession session, @Nonnull org.eclipse.aether.graph.DependencyNode node, boolean verbose) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java

                    DependencyNode resolverNode =
                            delegate.getMojoDescriptor().getPluginDescriptor().getDependencyNode();
                    DefaultNode node = new DefaultNode(session, resolverNode, false);
                    return Collections.unmodifiableMap(node.stream()
                            .filter(Objects::nonNull)
                            .map(Node::getDependency)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cloudresource/cloud_request_manager_test.go

    		// Set the request delay so the manager timeouts and collects the node addresses later
    		RequestDelay: 200 * time.Millisecond,
    	}
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    
    	manager := NewSyncManager(cloud, "defaultNode", syncPeriod).(*cloudResourceSyncManager)
    	go manager.Run(stopCh)
    
    	nodeAddresses, err := manager.NodeAddresses()
    	if err != nil {
    		t.Errorf("Unexpected err: %q\n", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

            return getNode(node, false);
        }
    
        @Override
        public Node getNode(org.eclipse.aether.graph.DependencyNode node, boolean verbose) {
            return allNodes.computeIfAbsent(node, n -> new DefaultNode(this, n, verbose));
        }
    
        @Nonnull
        @Override
        public Artifact getArtifact(@Nonnull org.eclipse.aether.artifact.Artifact artifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/toolingApi/customModel/groovy/plugin/src/main/java/org/gradle/sample/plugin/DefaultModel.java

     * are compatible with the custom tooling model interface. It may or may not implement the custom tooling model interface.
     */
    public class DefaultModel implements Serializable {
        public String getName() {
            return "name";
        }
    
        public List<String> getTasks() {
            return Arrays.asList(":a", ":b", ":c");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 599 bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/downwardapivolumesource.go

    // with apply.
    type DownwardAPIVolumeSourceApplyConfiguration struct {
    	Items       []DownwardAPIVolumeFileApplyConfiguration `json:"items,omitempty"`
    	DefaultMode *int32                                    `json:"defaultMode,omitempty"`
    }
    
    // DownwardAPIVolumeSourceApplyConfiguration constructs an declarative configuration of the DownwardAPIVolumeSource type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/projectedvolumesource.go

    // with apply.
    type ProjectedVolumeSourceApplyConfiguration struct {
    	Sources     []VolumeProjectionApplyConfiguration `json:"sources,omitempty"`
    	DefaultMode *int32                               `json:"defaultMode,omitempty"`
    }
    
    // ProjectedVolumeSourceApplyConfiguration constructs an declarative configuration of the ProjectedVolumeSource type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. pkg/apis/storage/v1beta1/defaults_test.go

    	// field should be defaulted
    	defaultMode := storagev1beta1.VolumeBindingImmediate
    	output := roundTrip(t, runtime.Object(class)).(*storagev1beta1.StorageClass)
    	outMode := output.VolumeBindingMode
    	if outMode == nil {
    		t.Errorf("Expected VolumeBindingMode to be defaulted to: %+v, got: nil", defaultMode)
    	} else if *outMode != defaultMode {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/configmapvolumesource.go

    	LocalObjectReferenceApplyConfiguration `json:",inline"`
    	Items                                  []KeyToPathApplyConfiguration `json:"items,omitempty"`
    	DefaultMode                            *int32                        `json:"defaultMode,omitempty"`
    	Optional                               *bool                         `json:"optional,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  10. pkg/volume/secret/secret.go

    // MakePayload function is exported so that it can be called from the projection volume driver
    func MakePayload(mappings []v1.KeyToPath, secret *v1.Secret, defaultMode *int32, optional bool) (map[string]volumeutil.FileProjection, error) {
    	if defaultMode == nil {
    		return nil, fmt.Errorf("no defaultMode used, not even the default value for it")
    	}
    
    	payload := make(map[string]volumeutil.FileProjection, len(secret.Data))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top