Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for SetMode (1.39 sec)

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

                        session.getRepositorySystem().collectDependencies(systemSession, collectRequest);
                return new DefaultDependencyResolverResult(
                        null, result.getExceptions(), session.getNode(result.getRoot(), request.getVerbose()), 0);
            } catch (DependencyCollectionException e) {
                throw new DependencyResolverException("Unable to collect dependencies", e);
            }
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/plugin/plugin.go

    func NewRegistrationHandler(kubeClient kubernetes.Interface, getNode func() (*v1.Node, error)) *RegistrationHandler {
    	handler := &RegistrationHandler{}
    
    	// If kubelet ever gets an API for stopping registration handlers, then
    	// that would need to be hooked up with stopping the controller.
    	handler.controller = startNodeResourcesController(context.TODO(), kubeClient, getNode)
    
    	return handler
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. pkg/kubelet/server/stats/summary.go

    func (sp *summaryProviderImpl) Get(ctx context.Context, updateStats bool) (*statsapi.Summary, error) {
    	// TODO(timstclair): Consider returning a best-effort response if any of
    	// the following errors occur.
    	node, err := sp.provider.GetNode()
    	if err != nil {
    		return nil, fmt.Errorf("failed to get node info: %v", err)
    	}
    	nodeConfig := sp.provider.GetNodeConfig()
    	rootStats, networkStats, err := sp.provider.GetCgroupStats("/", updateStats)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLock.java

         */
        State getState();
    
        /**
         * The actual mode of the lock. May be different to what was requested.
         */
        FileLockManager.LockMode getMode();
    
        /**
         * An immutable snapshot of the state of a lock.
         */
        interface State {
            boolean canDetectChanges();
            boolean isInInitialState();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/DefaultLockOptions.java

        }
    
        public DefaultLockOptions useCrossVersionImplementation() {
            crossVersion = true;
            return this;
        }
    
        @Override
        public FileLockManager.LockMode getMode() {
            return mode;
        }
    
        @Override
        public boolean isUseCrossVersionImplementation() {
            return crossVersion;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/UnauthorizedFileVisitDetails.java

            return getRelativePath().getPathString();
        }
    
        @Override
        public RelativePath getRelativePath() {
            return relativePath;
        }
    
        @Override
        @Deprecated
        public int getMode() {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public FilePermissions getPermissions() {
            throw new UnsupportedOperationException();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributeIterator.java

        private Map.Entry<String, String> attribute;
    
        private int position;
    
        public Xpp3DomAttributeIterator(NodePointer parent, QName qname) {
            this.parent = parent;
            this.node = (XmlNodeImpl) parent.getNode();
    
            this.attributes = this.node.getAttributes().entrySet().stream()
                    .filter(a -> a.getKey().equals(qname.getName()) || "*".equals(qname.getName()))
                    .collect(Collectors.toList());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodename/node_name_test.go

    			wantStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable, ErrReason),
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			nodeInfo := framework.NewNodeInfo()
    			nodeInfo.SetNode(test.node)
    			_, ctx := ktesting.NewTestContext(t)
    			p, err := New(ctx, nil, nil)
    			if err != nil {
    				t.Fatalf("creating plugin: %v", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemNode.java

         */
        Optional<MetadataSnapshot> getSnapshot(VfsRelativePath relativePath, CaseSensitivity caseSensitivity);
    
        Optional<FileSystemNode> getNode(VfsRelativePath relativePath, CaseSensitivity caseSensitivity);
    
        /**
         * Stores information to the virtual file system that we have learned about.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. docs/de/docs/how-to/conditional-openapi.md

    ## Über Sicherheit, APIs und Dokumentation
    
    Das Verstecken Ihrer Dokumentationsoberflächen in der Produktion *sollte nicht* die Methode sein, Ihre API zu schützen.
    
    Dadurch wird Ihrer API keine zusätzliche Sicherheit hinzugefügt, die *Pfadoperationen* sind weiterhin dort verfügbar, wo sie sich befinden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:13 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top