Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 98 for SetMode (0.39 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/server/stats/handler.go

    	//
    	// GetPodByName returns the spec of the pod with the name in the specified
    	// namespace.
    	GetPodByName(namespace, name string) (*v1.Pod, bool)
    	// GetNode returns the spec of the local node.
    	GetNode() (*v1.Node, error)
    	// GetNodeConfig returns the configuration of the local node.
    	GetNodeConfig() cm.NodeConfig
    	// ListVolumesForPod returns the stats of the volume used by the pod with
    	// the podUID.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelBinding.java

         */
        public BindingPredicate getPredicate() {
            return predicate;
        }
    
        public boolean isBound() {
            return boundTo != null;
        }
    
        public ModelNodeInternal getNode() {
            if (boundTo == null) {
                throw new IllegalStateException("Target node has not been bound.");
            }
            return boundTo;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/ResolveMutationsNode.java

            this.node = node;
            this.nodeValidator = nodeValidator;
            this.buildOperationRunner = buildOperationRunner;
            this.accessHierarchies = accessHierarchies;
        }
    
        public Node getNode() {
            return node;
        }
    
        @Override
        public String toString() {
            return "Resolve mutations for " + node;
        }
    
        @Nullable
        @Override
        public Throwable getNodeFailure() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ShadowPluginSmokeTest.groovy

                'io.github.goooler.shadow': Versions.of(TestedVersions.shadowFork)
            ]
        }
    
        public static final String FILE_TREE_ELEMENT_GET_MODE_DEPRECATION = "The FileTreeElement.getMode() method has been deprecated. " +
            "This is scheduled to be removed in Gradle 9.0. " +
            "Please use the getPermissions() method instead. " +
            "Consult the upgrading guide for further information: " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandlerTest.groovy

            }
    
            actualIds == expectedIds
        }
    
        CapabilitiesConflictHandler.Candidate candidate(CapabilityInternal cap, ComponentState co) {
            Mock(CapabilitiesConflictHandler.Candidate) {
                getNode() >> node(co)
                getCapability() >> cap
                getImplicitCapabilityProviders() >> []
            }
        }
    
        ComponentState component(String group="group", String name="name", String version="1.0") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top