Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for flagstr (0.12 sec)

  1. istioctl/pkg/waypoint/waypoint.go

    			if deleteAll {
    				return deleteWaypoints(cmd, kubeClient, ns, nil)
    			}
    
    			// Delete waypoints by names if provided
    			return deleteWaypoints(cmd, kubeClient, ns, args)
    		},
    	}
    	waypointDeleteCmd.Flags().BoolVar(&deleteAll, "all", false, "Delete all waypoints in the namespace")
    
    	waypointListCmd := &cobra.Command{
    		Use:   "list",
    		Short: "List managed waypoint configurations",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            }
    
            where:
            jdk << AvailableJavaHomes.getAvailableJdks {
                it.languageVersion.isJava9Compatible()
            }
        }
    
        def "invalid flags should be reported as problems"() {
            given:
            writeJavaCausingTwoCompilationWarnings("Foo")
            buildFile << "tasks.compileJava.options.compilerArgs += ['-invalid-flag']"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server_linux.go

    // timeoutForNodePodCIDR is the time to wait for allocators to assign a PodCIDR to the
    // node after it is registered.
    var timeoutForNodePodCIDR = 5 * time.Minute
    
    // platformApplyDefaults is called after parsing command-line flags and/or reading the
    // config file, to apply platform-specific default values to config.
    func (o *Options) platformApplyDefaults(config *proxyconfigapi.KubeProxyConfiguration) {
    	if config.Mode == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. cmd/storage-rest-server.go

    	case errors.Is(err, errUnsupportedDisk):
    		var hint string
    		if endpoint.URL != nil {
    			hint = fmt.Sprintf("Drive '%s' does not support O_DIRECT flags, MinIO erasure coding requires filesystems with O_DIRECT support", endpoint.Path)
    		} else {
    			hint = "Drives do not support O_DIRECT flags, MinIO erasure coding requires filesystems with O_DIRECT support"
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/istio_ca.go

    //   backward compat. Will be removed with the node-agent. sds-agent is calling NewCitadelClient directly, using
    //   K8S root.
    
    var (
    	// LocalCertDir replaces the "cert-chain", "signing-cert" and "signing-key" flags in citadel - Istio installer is
    	// requires a secret named "cacerts" with specific files inside.
    	LocalCertDir = env.Register("ROOT_CA_DIR", "./etc/cacerts",
    		"Location of a local or mounted CA root")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

      const std::vector<tensorflow::Flag> flag_list = {
          tensorflow::Flag("test_model_file", &model_file,
                           "Path to test tflite model file."),
      };
    
      const bool parse_result = tensorflow::Flags::Parse(&argc, argv, flag_list);
      if (!parse_result) {
        std::cerr << "Required test_model_file\n";
        std::abort();
      }
      g_test_model_dir =
          new tensorflow::string(tensorflow::io::Dirname(model_file));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    			lv.cache.retuevar = append(lv.cache.retuevar, int32(i))
    		}
    	}
    }
    
    // A liveEffect is a set of flags that describe an instruction's
    // liveness effects on a variable.
    //
    // The possible flags are:
    //
    //	uevar - used by the instruction
    //	varkill - killed by the instruction (set)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    		SSEC:           crypto.SSEC.IsEncrypted(mopts.meta),
    		Replica:        replStatus == replication.Replica,
    		ExistingObject: mopts.isExistingObjectReplication(),
    	}
    	tagStr, ok := mopts.meta[xhttp.AmzObjectTagging]
    	if ok {
    		opts.UserTags = tagStr
    	}
    	tgtArns := cfg.FilterTargetArns(opts)
    	for _, tgtArn := range tgtArns {
    		tgt := globalBucketTargetSys.GetRemoteTargetClient(bucket, tgtArn)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - The kubernetes repo now uses Go workspaces.  This should not impact end users at all, but does have impact for developers of downstream projects.  Switching to workspaces caused some breaking changes in the flags to the various k8s.io/code-generator tools.  Downstream consumers should look at staging/src/k8s.io/code-generator/kube_codegen.sh to see the changes. ([#123529](https://github.com/kubernetes/kubernetes/pull/123529), [@thockin](https://github.com/thockin))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    				t.Run(tt.name, func(t *testing.T) {
    					if tt.oldestWins {
    						test.SetForTest(t, &features.PersistOldestWinsHeuristicForVirtualServiceHostMatching, true)
    					} else {
    						t.Parallel() // feature flags and parallel tests don't mix
    					}
    					cfg := knownServices
    					for _, tc := range tt.cfg {
    						cfg = cfg + "\n---\n" + tc.Config(t, variant)
    					}
    					istio, k, err := crd.ParseInputs(cfg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top