Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 245 for Extract (0.1 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            // Possible solutions
            failureDescriptionContains("1. Extract artifact metadata and annotate with @Input.")
            failureDescriptionContains("2. Extract artifact files and annotate with @InputFiles.")
    
            // Documentation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    				if err != nil {
    					return fmt.Errorf("workloadgroup %s not found in namespace %s: %v", name, namespace, err)
    				}
    			}
    
    			// extract the cluster ID from the injector config (.Values.global.multiCluster.clusterName)
    			if !validateFlagIsSetManuallyOrNot(cmd, "clusterID") {
    				// extract the cluster ID from the injector config if it is not set by user
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. src/go/build/read.go

    			}
    
    			doc := spec.Doc
    			if doc == nil && len(d.Specs) == 1 {
    				doc = d.Doc
    			}
    			info.imports = append(info.imports, fileImport{path, spec.Pos(), doc})
    		}
    	}
    
    	// Extract directives.
    	for _, group := range info.parsed.Comments {
    		if group.Pos() >= info.parsed.Package {
    			break
    		}
    		for _, c := range group.List {
    			if strings.HasPrefix(c.Text, "//go:") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

    template <typename Conv2dOpTy>
    class ConvertTFDilatedConvOp : public OpRewritePattern<Conv2dOpTy> {
     private:
      using OpRewritePattern<Conv2dOpTy>::OpRewritePattern;
    
      // Extract the dilation factor from `block_shape` and pack it in an ArrayAttr.
      std::optional<ArrayAttr> ExtractDilationsAttrFromBlockShape(
          Value stb_block_shape, Value bts_block_shape, int64_t expand_axis,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    import spock.lang.Specification
    
    class JavaProcessStackTracesMonitorSpec extends Specification {
    
        @Requires(UnitTestPreconditions.NotWindows)
        def 'can extract process info from unix ps()'() {
            given:
            def output = '''
              PID TTY      STAT   TIME COMMAND
     1401 ?        Ss     0:05 /lib/systemd/systemd --user
     1409 ?        S      0:00 (sd-pam)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. src/crypto/x509/parser.go

    	}
    	cert.Raw = input
    	if !input.ReadASN1(&input, cryptobyte_asn1.SEQUENCE) {
    		return nil, errors.New("x509: malformed certificate")
    	}
    
    	var tbs cryptobyte.String
    	// do the same trick again as above to extract the raw
    	// bytes for Certificate.RawTBSCertificate
    	if !input.ReadASN1Element(&tbs, cryptobyte_asn1.SEQUENCE) {
    		return nil, errors.New("x509: malformed tbs certificate")
    	}
    	cert.RawTBSCertificate = tbs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

        } else if (test instanceof TestCase) {
          TestCase testCase = (TestCase) test;
          return Helpers.getMethod(testCase.getClass(), testCase.getName());
        } else {
          throw new IllegalArgumentException("unable to extract method from test: not a TestCase.");
        }
      }
    
      protected TestSuite makeSuiteForTesterClass(Class<? extends AbstractTester<?>> testerClass) {
        TestSuite candidateTests = new TestSuite(testerClass);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract;
    
    import com.google.common.base.Optional;
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.Cast;
    import org.gradle.model.internal.core.ModelPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. cmd/streaming-signature-v4.go

    	// Payload for STREAMING signature should be 'STREAMING-AWS4-HMAC-SHA256-PAYLOAD'
    	if payload != req.Header.Get(xhttp.AmzContentSha256) {
    		return cred, "", "", time.Time{}, ErrContentSHA256Mismatch
    	}
    
    	// Extract all the signed headers along with its values.
    	extractedSignedHeaders, errCode := extractSignedHeaders(signV4Values.SignedHeaders, r)
    	if errCode != ErrNone {
    		return cred, "", "", time.Time{}, errCode
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

        } else if (test instanceof TestCase) {
          TestCase testCase = (TestCase) test;
          return Helpers.getMethod(testCase.getClass(), testCase.getName());
        } else {
          throw new IllegalArgumentException("unable to extract method from test: not a TestCase.");
        }
      }
    
      protected TestSuite makeSuiteForTesterClass(Class<? extends AbstractTester<?>> testerClass) {
        TestSuite candidateTests = new TestSuite(testerClass);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top