Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 433 for Extract (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictResolutionResult.java

                return (ComponentState) selected;
            }
            if (selected instanceof NodeState) {
                return ((NodeState) selected).getComponent();
            }
            throw new IllegalArgumentException("Cannot extract a ComponentState from " + selected.getClass());
        }
    
    
        private final Collection<? extends ModuleIdentifier> participatingModules;
        private final ComponentState selected;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. internal/config/server.go

    	} `yaml:"ftp"`
    	SFTP struct {
    		Address       string `yaml:"address"`
    		SSHPrivateKey string `yaml:"ssh-private-key"`
    	} `yaml:"sftp"`
    }
    
    // ServerConfigVersion struct is used to extract the version
    type ServerConfigVersion struct {
    	Version string `yaml:"version"`
    }
    
    // ServerConfigCommon struct for server config common options
    type ServerConfigCommon struct {
    	RootUser    string `yaml:"rootUser"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/RuleSourceSchemaExtractionStrategyTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract
    
    import org.gradle.model.RuleSource
    import org.gradle.model.internal.manage.schema.CompositeSchema
    import org.gradle.model.internal.manage.schema.ManagedImplSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskOutputIntegrationTest.groovy

            // Must rename to "*.tgz" for unpacking to work
            def tgzCacheEntry = temporaryFolder.file("cache.tgz")
            cacheEntry.copyBytesTo(tgzCacheEntry)
            def extractDir = temporaryFolder.file("extract")
            tgzCacheEntry.untarTo(extractDir)
            tgzCacheEntry.delete()
    
            def metadata = new Properties()
            extractDir.file("METADATA").withInputStream { input ->
                metadata.load(input)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 17:51:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DefaultDecompressionCoordinator.java

            // withFileLock prevents other processes from extracting into the expandedDir at the same time
            // but multiple threads in this process could still try to extract into the same directory.
            cache.withFileLock(() -> {
                // guardByKey prevents multiple threads in this process from extracting into the same directory at the same time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/go/printer/example_test.go

    			if f, ok := d.(*ast.FuncDecl); ok && f.Name.Name == functionname {
    				fun = f
    				return
    			}
    		}
    	}
    	panic("function not found")
    }
    
    func printSelf() {
    	// Parse source file and extract the AST without comments for
    	// this function, with position information referring to the
    	// file set fset.
    	funcAST, fset := parseFunc("example_test.go", "printSelf")
    
    	// Print the function body into buffer buf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:55:02 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. docs/sts/client_grants/sts_element.py

            """
            elt = self.element.find('sts:{}'.format(name), _STS_NS)
            return STSElement(self.root_name, elt) if elt is not None else None
    
        def get_child_text(self, name, strict=True):
            """Extract text of a child element. If strict, and child element is
            not present, raises InvalidXMLError and otherwise returns
            None.
    
            """
            if strict:
                try:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. security/pkg/pki/util/san_test.go

    			},
    			expectedIDs:    nil,
    			expectedErrMsg: "failed to extract identities from SAN extension (error asn1: syntax error: data truncated)",
    		},
    		"Extensions with incorrectly encoded SAN": {
    			exts: []pkix.Extension{
    				{Id: asn1.ObjectIdentifier{2, 5, 29, 17}, Value: append(copyBytes(sanExt.Value), 'x')},
    			},
    			expectedIDs:    nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

        /**
         * Pattern to extract task output.
         */
        private static final Pattern TASK_OUTPUT_PATTERN = patternForHeader(TASK_HEADER);
    
        /**
         * Pattern to extract task output.
         */
        private static final Pattern TRANSFORM_OUTPUT_PATTERN = patternForHeader(TRANSFORM_HEADER);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/internal/genflags/vetflag.go

    	// If there is no match, "" is returned.
    	originalValue := func(value string) string {
    		match := rDeprecated.FindStringSubmatch(value)
    		if len(match) < 2 {
    			return ""
    		}
    		return match[1]
    	}
    	// extract deprecated aliases for existing analyses
    	for _, flag := range analysisFlags {
    		if o := originalValue(flag.Usage); analyzerSet[o] {
    			analyzerSet[flag.Name] = true
    		}
    	}
    
    	var analyzers []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top