Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 325 for runes (0.11 sec)

  1. src/fmt/print.go

    	Flag(c int) bool
    }
    
    // Formatter is implemented by any value that has a Format method.
    // The implementation controls how [State] and rune are interpreted,
    // and may call [Sprint] or [Fprint](f) etc. to generate its output.
    type Formatter interface {
    	Format(f State, verb rune)
    }
    
    // Stringer is implemented by any value that has a String method,
    // which defines the “native” format for that value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/envcmd/env.go

    			}
    		}
    	}
    }
    
    func hasNonGraphic(s string) bool {
    	for _, c := range []byte(s) {
    		if c == '\r' || c == '\n' || (!unicode.IsGraphic(rune(c)) && !unicode.IsSpace(rune(c))) {
    			return true
    		}
    	}
    	return false
    }
    
    func shellQuote(s string) string {
    	var b bytes.Buffer
    	b.WriteByte('\'')
    	for _, x := range []byte(s) {
    		if x == '\'' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. common/config/.golangci.yml

        line-length: 160
        # tab width in spaces. Default to 1.
        tab-width: 1
      revive:
        ignore-generated-header: false
        severity: "warning"
        confidence: 0.0
        rules:
          - name: blank-imports
          - name: context-keys-type
          - name: time-naming
          - name: var-declaration
          - name: unexported-return
          - name: errorf
          - name: context-as-argument
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/app/cmd.go

    )
    
    func NewRootCommand(sds istioagent.SDSServiceFactory) *cobra.Command {
    	rootCmd := &cobra.Command{
    		Use:          "pilot-agent",
    		Short:        "Istio Pilot agent.",
    		Long:         "Istio Pilot agent runs in the sidecar or gateway container and bootstraps Envoy.",
    		SilenceUsage: true,
    		FParseErrWhitelist: cobra.FParseErrWhitelist{
    			// Allow unknown flags for backward-compatibility.
    			UnknownFlags: true,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authorization/v1/types.go

    	// Namespace to evaluate rules for. Required.
    	Namespace string `json:"namespace,omitempty" protobuf:"bytes,1,opt,name=namespace"`
    }
    
    // SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on
    // the set of authorizers the server is configured with and any errors experienced during evaluation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        setDefault(type, value1);
        return this;
      }
    
      /**
       * Tests that {@code cls} properly checks null on all constructor and method parameters that
       * aren't annotated nullable (according to the rules of {@link NullPointerTester}). In details:
       *
       * <ul>
       *   <li>All non-private static methods are checked such that passing null for any parameter
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

        ],
    ) -> bool:
      """Runs calibration and adds calibration statistics to exported model.
    
      Args:
        saved_model_path: Path to the SavedModel to run calibration.
        signature_keys: List of signature keys corresponding to SignatureDefs to run
          calibration on.
        tags: A set of tags that identify the MetaGraphDef.
        force_graph_mode_calibration: If True, runs the calibration in graph mode.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server_linux.go

    		logger.Info("Defaulting to no-op detect-local")
    	}
    
    	return localDetectors
    }
    
    // platformCleanup removes stale kube-proxy rules that can be safely removed. If
    // cleanupAndExit is true, it will attempt to remove rules from all known kube-proxy
    // modes. If it is false, it will only remove rules that are definitely not in use by the
    // currently-configured 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

                task log { }
            """
    
            def runs = GradleContextualExecuter.isConfigCache() ? 2 : 1
            runs.times {
                barrier.expectConcurrent("child-build-started", "1-started", "2-started")
                barrier.expectConcurrent("child-build-finished", "1-finished", "2-finished")
            }
    
            when:
            runs.times {
                executer.withArgument("--parallel")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/interface.go

    	RunPreBindPlugins(ctx context.Context, state *CycleState, pod *v1.Pod, nodeName string) *Status
    
    	// RunPostBindPlugins runs the set of configured PostBind plugins.
    	RunPostBindPlugins(ctx context.Context, state *CycleState, pod *v1.Pod, nodeName string)
    
    	// RunReservePluginsReserve runs the Reserve method of the set of
    	// configured Reserve plugins. If any of these calls returns an error, it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top