Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for desc1 (0.41 sec)

  1. pilot/pkg/simulation/traffic.go

    		if !empty(c.GetFilterChainMatch()) {
    			anySet = true
    			break
    		}
    	}
    	if !anySet {
    		log.Debugf("%v: none set, skipping", desc)
    		return chains
    	}
    	for i, c := range chains {
    		if match(c.GetFilterChainMatch()) {
    			log.Debugf("%v: matched chain %v/%v", desc, i, c.GetName())
    			res = append(res, c)
    		}
    	}
    	// Return all matching filter chains
    	if len(res) > 0 {
    		return res
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

      }
    
     private:
      Option<bool> skip_raise_cpu_ops_{
          *this, "skip-raise-cpu-ops",
          llvm::cl::desc("Whether to cluster and raise CPU ops."),
          llvm::cl::init(false)};
    
      Option<bool> ignore_inference_type_{
          *this, "ignore-inference-type",
          llvm::cl::desc("Whether to ignore the inference type in clustering."),
          llvm::cl::init(false)};
    
      llvm::StringRef getArgument() const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

        "tf-xla-input-types",
        llvm::cl::desc("XLA input argument types (kinds), separated by ','. "
                       "Supported types include ['parameter', 'resource']. If "
                       "empty, all arguments are assumed to be parameters."),
        llvm::cl::init(""));
    // NOLINTNEXTLINE
    llvm::cl::opt<bool> emit_use_tuple_arg(
        "tf-xla-emit-use-tuple-args",
        llvm::cl::desc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  4. src/internal/trace/internal/oldtrace/parser.go

    func (p *parser) parseEvent(raw *rawEvent, ev *Event) error {
    	desc := &EventDescriptions[raw.typ]
    	if desc.Name == "" {
    		return fmt.Errorf("missing description for event type %d", raw.typ)
    	}
    	narg := raw.argNum()
    	if len(raw.args) != narg {
    		return fmt.Errorf("%s has wrong number of arguments: want %d, got %d", desc.Name, narg, len(raw.args))
    	}
    	switch raw.typ {
    	case EvBatch:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

    static llvm::cl::opt<bool> print_function_result_mapping(
        "print-function-result-mapping",
        llvm::cl::desc(
            "Print the mapping of function result to flatbuffer output buffer"),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    static llvm::cl::opt<std::string> weight_quantization(
        "weight_quantization",
        llvm::cl::desc("The type of the quantized weight buffer. Must be NONE, "
                       "INT8, FLOAT16."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepositoryTest.groovy

            0 * delegate._
    
            where:
            [maxRetries, exception, effectiveRetries] << retryCombinations()
        }
    
        @Unroll
        def "blocks repo immediately when receives #desc"() {
            access = createAccess(1)
    
            given:
            def artifact = Mock(ComponentArtifactMetadata)
            def artifactId = Mock(ComponentArtifactIdentifier)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            expectReindentedValidationMessage()
            // This is required for the daemon to clean up symlinks between builds
            executer.requireDaemon()
            executer.requireIsolatedDaemons()
        }
    
        def "#desc can handle symlinks"() {
            def buildScript = file("build.gradle")
            def baseDir = file('build')
            baseDir.file('file').text = 'some contents'
            def symlinked = baseDir.file('symlinked')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

      Option<std::string> force_data_format{
          *this, "force-data-format",
          llvm::cl::desc("Force data format for all layout sensitive ops")};
      Option<bool> skip_fold_transpose_in_ops{
          *this, "skip-fold-transpose-in-ops",
          llvm::cl::desc("Skip folding transpose operands in Ops which can support "
                         "different layouts.")};
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

          *this, "post-training-quantize", llvm::cl::init(false),
          llvm::cl::desc("Enable post training quantization. Only used in tests.")};
    
      // A local flag is needed for testing conditions in
      // prepare_quantize_ptq_per_channel.mlir.
      Option<bool> enable_per_channel_quantization_{
          *this, "enable-per-channel-quantization", llvm::cl::init(false),
          llvm::cl::desc("Whether enable per-channel quantized weights.")};
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    		}
    		if err := store.Add(makeTestPod("bar", 5)); err != nil {
    			t.Errorf("unexpected error: %v", err)
    		}
    	}()
    
    	testCases := []struct {
    		desc            string
    		resourceVersion uint64
    		want            string
    	}{
    		{
    			desc:            "resourceVersion is non-zero",
    			resourceVersion: 5,
    			want: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top