Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 223 for Option (0.28 sec)

  1. src/text/template/exec_test.go

    	}
    	// Same if we set the option explicitly to the default.
    	tmpl.Option("missingkey=default")
    	b.Reset()
    	err = tmpl.Execute(&b, data)
    	if err != nil {
    		t.Fatal("default:", err)
    	}
    	want = "99 <no value>"
    	got = b.String()
    	if got != want {
    		t.Errorf("got %q; expected %q", got, want)
    	}
    	// Next we ask for a zero value
    	tmpl.Option("missingkey=zero")
    	b.Reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    		if err != nil {
    			return err
    		}
    		if reservedSystemCPUs.Size() > 0 {
    			// at cmd option validation phase it is tested either --system-reserved-cgroup or --kube-reserved-cgroup is specified, so overwrite should be ok
    			klog.InfoS("Option --reserved-cpus is specified, it will overwrite the cpu setting in KubeReserved and SystemReserved", "kubeReserved", s.KubeReserved, "systemReserved", s.SystemReserved)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    // PrctlRetInt performs a prctl operation specified by option and further
    // optional arguments arg2 through arg5 depending on option. It returns a
    // non-negative integer that is returned by the prctl syscall.
    func PrctlRetInt(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 uintptr) (int, error) {
    	ret, _, err := Syscall6(SYS_PRCTL, uintptr(option), uintptr(arg2), uintptr(arg3), uintptr(arg4), uintptr(arg5), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @param action the action to execute.
         */
        void beforeEvaluate(Action<? super Project> action);
    
        /**
         * <p>Adds an action to call immediately after this project is evaluated.</p>
         * <p>Passes the project to the
         * action as a parameter. Actions passed to this method execute in the same order they were passed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func impl_Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 uintptr) (err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS___PRCTL_A<<4, uintptr(option), uintptr(arg2), uintptr(arg3), uintptr(arg4), uintptr(arg5))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  6. tensorflow/BUILD

        ],
        visibility = ["//visibility:public"],
    )
    
    # This flag disables all google production dependencies, intended for
    # applications run with non-prod environment.
    # TODO(timshen): Currently this option only disables some dependencies.
    # See b/122528503.
    # copybara:uncomment_begin(google-only)
    # bool_flag(
    #     name = "tf_no_prod_deps",
    #     build_setting_default = False,
    # )
    #
    # config_setting(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Afterwards, the watch stream will proceed as usual, sending watch events
      // corresponding to changes (subsequent to the RV) to objects watched.
      //
      // When `sendInitialEvents` option is set, we require `resourceVersionMatch`
      // option to also be set. The semantic of the watch request is as following:
      // - `resourceVersionMatch` = NotOlderThan
      //   is interpreted as "data at least as new as the provided `resourceVersion`"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Afterwards, the watch stream will proceed as usual, sending watch events
      // corresponding to changes (subsequent to the RV) to objects watched.
      //
      // When `sendInitialEvents` option is set, we require `resourceVersionMatch`
      // option to also be set. The semantic of the watch request is as following:
      // - `resourceVersionMatch` = NotOlderThan
      //   is interpreted as "data at least as new as the provided `resourceVersion`"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_test.go

    				t.Fatalf("Handshake failed")
    			}
    		}
    		recordingConn.WriteTo(out)
    		t.Logf("Wrote %s\n", path)
    		childProcess.Wait()
    	}
    }
    
    func runServerTestForVersion(t *testing.T, template *serverTest, version, option string) {
    	// Make a deep copy of the template before going parallel.
    	test := *template
    	if template.config != nil {
    		test.config = template.config.Clone()
    	}
    	test.name = version + "-" + test.name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted.
      // Note:
      // * the number of additional invocations is not guaranteed to be exactly one.
      // * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again.
      // * webhooks that use this option may be reordered to minimize the number of additional invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top