Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,097 for opinion (0.27 sec)

  1. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              },
              "denied": {
                "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.",
                "type": "boolean"
              },
              "evaluationError": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  2. src/text/template/option.go

    	mapError                             // Error out
    )
    
    type option struct {
    	missingKey missingKeyAction
    }
    
    // Option sets options for the template. Options are described by
    // strings, either a simple string or "key=value". There can be at
    // most one equals sign in an option string. If the option string
    // is unrecognized or otherwise invalid, Option panics.
    //
    // Known options:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/Option.java

     * property. Some options may also be configurable via the Gradle API, for example feature previews.
     */
    public interface Option {
        abstract class Value<T> {
            public abstract boolean isExplicit();
    
            public abstract T get();
    
            /**
             * Creates the default value for an option.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	}
    
    	if *genLog {
    		rr.add(stmtf("logRule(%q)", rule.Loc))
    	}
    	return rr
    }
    
    // genMatch returns the variable whose source position should be used for the
    // result (or "" if no opinion), and a boolean that reports whether the match can fail.
    func genMatch(rr *RuleRewrite, arch arch, match string, pregenTop bool) (pos, checkOp string) {
    	cnt := varCount(rr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/tasks/options/Option.java

     * </p>
     * <p>
     * When the option names are unequal, the order described above is used when setting the option's value.
     * If the base class has an option with the name "foo" and an interface has an option with the name "bar",
     * the option "foo" will have precedence over the option "bar" and setting both will result in the value of "foo".
     * </p>
     * <p>
     * <strong>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. pkg/test/framework/resource/config/apply/option.go

    // Option is a strategy for updating Options.
    type Option interface {
    	// Set this option on the provided Options
    	Set(*Options)
    }
    
    // OptionFunc is a function-based Option.
    type OptionFunc func(*Options)
    
    // Set just invokes this function to update the Options.
    func (f OptionFunc) Set(opts *Options) {
    	f(opts)
    }
    
    // NoCleanup is an Option that disables config cleanup.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 02:49:07 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status_test.go

    				v1.LabelArchStable:              "new-arch",
    				"please-persist":                "foo",
    			},
    		},
    		{
    			name: "make sure existing labels do not get deleted when initial node has no opinion",
    			initialNode: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{},
    				},
    			},
    			existingNode: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  8. istioctl/pkg/cli/option.go

    Xiaopeng Han <******@****.***> 1706292087 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 18:01:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/converter_gen.cc

          continue;
        }
        auto option_name = GetOperatorOptionName(*def);
        // Basic LSTM and LSTM ops share the same option to attribute converter.
        if (option_name == "BasicLSTMOptions") {
          continue;
        }
    
        os << formatv("  if(const auto *op = op_union.As{0}()) {{\n", option_name);
    
        // We only care about options that are in arguments
        auto *arg_values = def->getValueAsDag("arguments");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `I've had nothing yet,' Alice replied in an offended tone, `so
    I can't take more.'
    
      `You mean you can't take LESS,' said the Hatter:  `it's very
    easy to take MORE than nothing.'
    
      `Nobody asked YOUR opinion,' said Alice.
    
      `Who's making personal remarks now?' the Hatter asked
    triumphantly.
    
      Alice did not quite know what to say to this:  so she helped
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top