Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 620 for devnode (0.16 sec)

  1. src/main/java/jcifs/internal/dfs/Referral.java

    
        /**
         * @return the rpath
         */
        public final String getRpath () {
            return this.rpath;
        }
    
    
        /**
         * @return the node
         */
        public final String getNode () {
            return this.node;
        }
    
    
        /**
         * @return the specialName
         */
        public final String getSpecialName () {
            return this.specialName;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/testing/fake.go

    	}
    	for i, addr := range h.localAddresses[devName] {
    		if addr == address {
    			// delete address from slice h.localAddresses[devName]
    			h.localAddresses[devName] = append(h.localAddresses[devName][:i], h.localAddresses[devName][i+1:]...)
    			return nil
    		}
    	}
    	// return error message if address is not found in slice h.localAddresses[devName]
    	return fmt.Errorf("address: %s is not found in interface: %s", address, devName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/configdump.go

    	const (
    		istioVersionKey  = "ISTIO_VERSION"
    		istioProxyShaKey = "ISTIO_PROXY_SHA"
    	)
    
    	md := bootstrapDump.GetBootstrap().GetNode().GetMetadata().GetFields()
    
    	if versionPB, ok := md[istioVersionKey]; ok {
    		version = versionPB.GetStringValue()
    	}
    	if shaPB, ok := md[istioProxyShaKey]; ok {
    		sha = shaPB.GetStringValue()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 20:46:41 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/UnboundRulesProcessor.java

            UnboundRuleInput.Builder builder = UnboundRuleInput.type(reference.getType());
            ModelPath path;
            if (binding.isBound()) {
                builder.bound();
                path = binding.getNode().getPath();
            } else {
                path = reference.getPath();
                if (path != null) {
                    builder.suggestions(CollectionUtils.stringize(suggestionsProvider.transform(path)));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotUtil.java

                @Override
                public Optional<FileSystemNode> handleAsDescendantOfChild(VfsRelativePath pathInChild, T child) {
                    return child.getNode(pathInChild, caseSensitivity);
                }
    
                @Override
                public Optional<FileSystemNode> handleAsAncestorOfChild(String childPath, T child) {
                    return Optional.of(child);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. pkg/kubelet/volume_host.go

    	node, err := kvh.kubelet.GetNode()
    	if err != nil {
    		return nil, fmt.Errorf("error retrieving node: %v", err)
    	}
    	return node.Labels, nil
    }
    
    func (kvh *kubeletVolumeHost) GetAttachedVolumesFromNodeStatus() (map[v1.UniqueVolumeName]string, error) {
    	node, err := kvh.kubelet.GetNode()
    	if err != nil {
    		return nil, fmt.Errorf("error retrieving node: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pkg/controller/serviceaccount/tokengetter.go

    	if secret, err := c.secretLister.Secrets(namespace).Get(name); err == nil {
    		return secret, nil
    	}
    	return c.client.CoreV1().Secrets(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    }
    
    func (c clientGetter) GetNode(name string) (*v1.Node, error) {
    	// handle the case where the node lister isn't set due to feature being disabled
    	if c.nodeLister == nil {
    		return nil, apierrors.NewNotFound(v1.Resource("nodes"), name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractFileSystemLocationSnapshot.java

            return Optional.of(missingSnapshotForAbsolutePath(relativePath.getAbsolutePath()));
        }
    
        @Override
        public Optional<FileSystemNode> getNode(VfsRelativePath relativePath, CaseSensitivity caseSensitivity) {
            return Optional.of(getChildNode(relativePath, caseSensitivity));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. pkg/registry/registrytest/node.go

    	r.Lock()
    	defer r.Unlock()
    	for i, item := range r.Nodes.Items {
    		if item.Name == node.Name {
    			r.Nodes.Items[i] = *node
    			return r.Err
    		}
    	}
    	return r.Err
    }
    
    func (r *NodeRegistry) GetNode(ctx context.Context, nodeID string, options *metav1.GetOptions) (*api.Node, error) {
    	r.Lock()
    	defer r.Unlock()
    	if r.Err != nil {
    		return nil, r.Err
    	}
    	for _, node := range r.Nodes.Items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. pkg/registry/core/node/storage/storage_test.go

    	test.TestCreate(
    		// valid
    		newNode("foo"),
    		// invalid
    		newNode("_-a123-a_"),
    	)
    }
    
    func TestUpdate(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store).ClusterScope()
    	test.TestUpdate(
    		// valid
    		newNode("foo"),
    		// updateFunc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 01 12:49:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top