Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for extractJob (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_tail_with_tobool_op.mlir

    // RUN: tf-opt %s -tf-replicated-clustering-bridge-v2 -tfrt-lower-cluster-to-runtime-ops-tpu 2>&1 | FileCheck %s
    
    // This test verifies that the tail extraction is not terminated prematurely
    // in handling tf.If op which would end up with excessive host-device
    // communication.
    
    // In this test, all ops other than tf.Rank are marked with outside_compilation
    // . So the TPU program should contain tf.Rank op and there should be no
    // host-device communication.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. hack/jenkins/benchmark-dockerized.sh

    # Log output of the tests go to stderr.
    make test-integration WHAT="$*" KUBE_TEST_ARGS="-run='XXX' -bench=${TEST_PREFIX:-.} -benchtime=${BENCHTIME:-1s} -benchmem  -data-items-dir=${ARTIFACTS}" \
      | (go run test/integration/benchmark/extractlog/main.go) \
      | tee \
       >(prettybench -no-passthrough > "${ARTIFACTS}/BenchmarkResults.txt") \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractionContext.java

        public static <T> DefaultModelSchemaExtractionContext<T> root(ModelType<T> type) {
            return new DefaultModelSchemaExtractionContext<T>(null, type, null, null);
        }
    
        /**
         * null if this is the root of the extraction
         */
        @Nullable
        public DefaultModelSchemaExtractionContext<?> getParent() {
            return parent;
        }
    
        @Override
        public ModelType<T> getType() {
            return type;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/ExtractSymbols.java

         *
         * @since 4.7
         */
        @Nested
        public Property<NativePlatform> getTargetPlatform() {
            return targetPlatform;
        }
    
        // TODO: Need to track version/implementation of symbol extraction tool.
    
        @TaskAction
        protected void extractSymbols() {
            BuildOperationLogger operationLogger = getServices().get(BuildOperationLoggerFactory.class).newOperationLogger(getName(), getTemporaryDir());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/convert_tf_control_flow_to_scf.cc

        // integers. Thus, we use the `tensor.extract` op to compute the condition
        // of `scf.if` from that of `tf.IfRegion`.
        auto scf_if_condition =
            rewriter.create<tensor::ExtractOp>(loc, op.getCond());
    
        TypeRange tf_if_region_return_type = op.getResultTypes();
    
        // Create the `scf.if` op.
        auto scf_if_op =
            rewriter.create<scf::IfOp>(loc, tf_if_region_return_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ClassFileExtractionManager.java

    import org.gradle.util.internal.JarUtil;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.*;
    
    /**
     * This class manages class file extraction from library jar files.
     */
    public class ClassFileExtractionManager {
        private static final Logger LOGGER = LoggerFactory.getLogger(ClassFileExtractionManager.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.extractor.impl;
    
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.regex.Pattern;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractor.java

                    return;
                }
            }
    
            // Should never get here, the last strategy should be a catch all
            throw new IllegalStateException("No extraction strategy found for type: " + type);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. pkg/security/mock.go

    	if expected == "" {
    		return fmt.Errorf("jwt authentication not allowed")
    	}
    	targetJWT, err := ExtractBearerToken(ctx)
    	if err != nil {
    		return fmt.Errorf("target JWT extraction error: %v", err)
    	}
    	if targetJWT != expected {
    		return fmt.Errorf("expected token %q got %q", expected, targetJWT)
    	}
    	return nil
    }
    
    func checkCert(ctx context.Context, expected string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. security/pkg/server/ca/authenticate/kubeauth/kube_jwt_test.go

    	}{
    		"No bearer token": {
    			metadata: metadata.MD{
    				"clusterid": []string{primaryCluster},
    				"authorization": []string{
    					"Basic callername",
    				},
    			},
    			expectedErrMsg: "target JWT extraction error: no bearer token exists in HTTP authorization header",
    		},
    		"token not authenticated": {
    			token: invlidToken,
    			metadata: metadata.MD{
    				"clusterid": []string{primaryCluster},
    				"authorization": []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top