Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 195 for SetMode (0.14 sec)

  1. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/StatementReplacingVisitorSupport.java

        stat.getExpression().visit(this);
        stat.setCode(replace(stat.getCode()));
      }
    
      @Override
      public void visitSynchronizedStatement(SynchronizedStatement stat) {
        stat.getExpression().visit(this);
        stat.setCode(replace(stat.getCode()));
      }
    
      @Override
      public void visitCatchStatement(CatchStatement stat) {
        stat.setCode(replace(stat.getCode()));
      }
    
      @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/ExpressionReplacingVisitorSupport.java

            stat.setCode(replace(stat.getCode()));
        }
    
        @Override
        public void visitSynchronizedStatement(SynchronizedStatement stat) {
            stat.setExpression(replaceExpr(stat.getExpression()));
            stat.setCode(replace(stat.getCode()));
        }
    
        @Override
        public void visitCatchStatement(CatchStatement stat) {
            stat.setCode(replace(stat.getCode()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. docs/de/docs/how-to/extending-openapi.md

    Eine `FastAPI`-Anwendung (-Instanz) verfügt über eine `.openapi()`-Methode, von der erwartet wird, dass sie das OpenAPI-Schema zurückgibt.
    
    Als Teil der Erstellung des Anwendungsobjekts wird eine *Pfadoperation* für `/openapi.json` (oder welcher Wert für den Parameter `openapi_url` gesetzt wurde) registriert.
    
    Diese gibt lediglich eine JSON-Response zurück, mit dem Ergebnis der Methode `.openapi()` der Anwendung.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 14 16:44:05 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/test/cmd/util.go

    func RunCmd(command string, args ...string) (string, string, int, error) {
    	stdout, stderr, retcode, err := runCmdNoWrap(command, args...)
    	if err != nil {
    		return stdout, stderr, retcode, errors.Wrapf(err, "error running %s %v; \nretcode %d, \nstdout %q, \nstderr %q, \ngot error",
    			command, args, retcode, stdout, stderr)
    	}
    	return stdout, stderr, retcode, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 01 12:47:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. internal/bucket/object/lock/lock.go

    // Enabled indicates object locking is enabled
    const Enabled = "Enabled"
    
    // RetMode - object retention mode.
    type RetMode string
    
    const (
    	// RetGovernance - governance mode.
    	RetGovernance RetMode = "GOVERNANCE"
    
    	// RetCompliance - compliance mode.
    	RetCompliance RetMode = "COMPLIANCE"
    )
    
    // Valid - returns if retention mode is valid
    func (r RetMode) Valid() bool {
    	switch r {
    	case RetGovernance, RetCompliance:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    }
    
    // GetNode mocks base method.
    func (m *MockProvider) GetNode() (*v10.Node, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetNode")
    	ret0, _ := ret[0].(*v10.Node)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    // GetNode indicates an expected call of GetNode.
    func (mr *MockProviderMockRecorder) GetNode() *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchy.java

        }
    
        @Override
        public Stream<FileSystemLocationSnapshot> rootSnapshotsUnder(String absolutePath) {
            return getNode(absolutePath)
                .map(FileSystemNode::rootSnapshots)
                .orElseGet(Stream::empty);
        }
    
        private Optional<FileSystemNode> getNode(String absolutePath) {
            VfsRelativePath relativePath = VfsRelativePath.of(absolutePath);
            return relativePath.isEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/PatternSetSnapshottingFilter.java

                }
                return relativePath;
            }
    
            @Override
            @Deprecated
            public int getMode() {
                DeprecationLogger.deprecateMethod(FileTreeElement.class, "getMode()")
                    .replaceWith("getPermissions()")
                    .willBeRemovedInGradle9()
                    .withUpgradeGuideSection(8, "unix_file_permissions_deprecated")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

        def "querying the node for non-existent child #vfsSpec.searchedPath yields a missing file (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            FileSystemLocationSnapshot foundSnapshot = initialRoot.getNode(searchedPath, CASE_SENSITIVE).get() as FileSystemLocationSnapshot
            then:
            foundSnapshot.type == FileType.Missing
            foundSnapshot.absolutePath == searchedPath.absolutePath
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientForwardingTestOutputOperationListener.java

            }
        }
    
        private static int getDestination(TestOutputEvent.Destination destination) {
            switch (destination) {
                case StdOut: return Destination.StdOut.getCode();
                case StdErr: return Destination.StdErr.getCode();
                default: throw new IllegalStateException("Unknown output destination type: " + destination);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top