Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 933 for Extract (0.15 sec)

  1. src/crypto/tls/key_schedule.go

    	}
    	return c.expandLabel(secret, label, transcript.Sum(nil), c.hash.Size())
    }
    
    // extract implements HKDF-Extract with the cipher suite hash.
    func (c *cipherSuiteTLS13) extract(newSecret, currentSecret []byte) []byte {
    	if newSecret == nil {
    		newSecret = make([]byte, c.hash.Size())
    	}
    	return hkdf.Extract(c.hash.New, newSecret, currentSecret)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSetStrategy.java

     * 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.api.Action;
    import org.gradle.model.ModelSet;
    import org.gradle.model.internal.manage.schema.CollectionSchema;
    import org.gradle.model.internal.manage.schema.ModelSchema;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/ExtractSymbols.java

        }
    
        /**
         * The file to extract debug symbols from.
         */
        @InputFile
        @PathSensitive(PathSensitivity.NONE)
        public RegularFileProperty getBinaryFile() {
            return binaryFile;
        }
    
        /**
         * The destination file to extract debug symbols into.
         */
        @OutputFile
        public RegularFileProperty getSymbolFile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. ci/official/utilities/repack_libtensorflow.sh

    # Returns:
    #   None
    function cp_normalized_srcjar() {
      src_jar="$1"
      dest_jar="$2"
      tmp_dir=$(mktemp -d)
      cp "${src_jar}" "${tmp_dir}/orig.jar"
      pushd "${tmp_dir}"
      # Extract any src/ files
      jar -xf "${tmp_dir}/orig.jar" src/
      # Extract any org/ files under src/main/java
      (mkdir -p src/main/java && cd src/main/java && jar -xf "${tmp_dir}/orig.jar" org/)
      # Repackage src/
      jar -cMf "${tmp_dir}/new.jar" src
      popd
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 19:47:53 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/convert-tf-control-flow-to-scf.mlir

      }) {is_stateless = false} : (tensor<i1>) -> (tensor<*xf32>, tensor<4xf32>)
      func.return %res#0, %res#1 : tensor<*xf32>, tensor<4xf32>
    
      // CHECK-NEXT: %[[COND:.*]] = tensor.extract %[[ARG0]][] : tensor<i1>
      // CHECK-NEXT: %[[RES:.*]]:2 = scf.if %[[COND]] -> (tensor<*xf32>, tensor<4xf32>) {
      // CHECK-NEXT:   %[[CALL:.*]] = func.call @test_if_then1(%[[ARG1]]) : (tensor<4xf32>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/toolingApi/idea/readme.xml

    <sample>
        <para>An application that uses the tooling API to extract information needed by IntelliJ IDEA.</para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 124 bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/SpecializedMapStrategy.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.cache.CacheBuilder;
    import com.google.common.cache.CacheLoader;
    import com.google.common.cache.LoadingCache;
    import org.gradle.api.Action;
    import org.gradle.internal.UncheckedException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputPropertyAnnotationHandler.java

                annotationType, unpackValueTypesOf(propertyMetadata),
                propertyMetadata, validationContext,
                ResolvedArtifactResult.class,
                "Extract artifact metadata and annotate with @Input",
                "Extract artifact files and annotate with @InputFiles"
            );
        }
    
        private static final String UNSUPPORTED_VALUE_TYPE = "UNSUPPORTED_VALUE_TYPE";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. src/go/internal/gccgoimporter/testdata/escapeinfo.go

    // Test case for escape info in export data. To compile and extract .gox file:
    // gccgo -fgo-optimize-allocs -c escapeinfo.go
    // objcopy -j .go_export escapeinfo.o escapeinfo.gox
    
    package escapeinfo
    
    type T struct{ data []byte }
    
    func NewT(data []byte) *T {
    	return &T{data}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 19:41:25 UTC 2018
    - 306 bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ExtractPrecompiledScriptPluginPluginsTest.kt

    import java.io.File
    
    
    class ExtractPrecompiledScriptPluginPluginsTest : TestWithTempFiles() {
    
        private
        val outputDir by lazy {
            newFolder("plugins")
        }
    
        @Test
        fun `can extract plugins block from script with only plugins`() {
    
            extractPluginsFrom(
                scriptPlugin(
                    "plugins-only.gradle.kts",
                    """
                    // this comment will be removed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top