Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 322 for user4 (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{15, "SIGTERM", "terminated"},
    	{16, "SIGUSR1", "user Signal 1"},
    	{17, "SIGUSR2", "user Signal 2"},
    	{18, "SIGCHLD", "child Status Changed"},
    	{19, "SIGPWR", "power-Fail/Restart"},
    	{20, "SIGWINCH", "window Size Change"},
    	{21, "SIGURG", "urgent Socket Condition"},
    	{22, "SIGIO", "pollable Event"},
    	{23, "SIGSTOP", "stopped (signal)"},
    	{24, "SIGTSTP", "stopped (user)"},
    	{25, "SIGCONT", "continued"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    					// we do not expect HBONE traffic to have mutated user traffic
    					// presently ExpectMTLS is checking that headers were added to user traffic
    					ExpectMTLS: Never,
    				},
    				{
    					ConfigFile:    "beta-mtls-permissive.yaml",
    					Namespace:     systemNM,
    					Include:       Always,
    					ExpectSuccess: SupportsHBone,
    					// we do not expect HBONE traffic to have mutated user traffic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        Operation* input_ptr = nullptr;
        for (Operation* user : argument.getUsers()) {
          if (llvm::isa<TF::TPUReplicatedInputOp>(user)) {
            input_ptr = user;
            break;
          }
        }
        TF::TPUReplicatedInputOp input =
            llvm::cast<TF::TPUReplicatedInputOp>(input_ptr);
    
        // Validate that all users of the TPUReplicatedInput are ReadVariable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/syscall/zerrors_darwin_arm64.go

    	24: "cputime limit exceeded",
    	25: "filesize limit exceeded",
    	26: "virtual timer expired",
    	27: "profiling timer expired",
    	28: "window size changes",
    	29: "information request",
    	30: "user defined signal 1",
    	31: "user defined signal 2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            }
            Locale locale = getDefaultLocale();
            if (locale != null) {
                properties.put("user.language", locale.getLanguage());
                properties.put("user.country", locale.getCountry());
                properties.put("user.variant", locale.getVariant());
            }
    
            if (eagerClassLoaderCreationChecksOn) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // inclusive. This field may be limited in precision depending on context.
      optional int32 nanos = 2;
    }
    
    // ObjectMeta is metadata that all persisted resources must have, which includes all objects
    // users must create.
    message ObjectMeta {
      // Name must be unique within a namespace. Is required when creating resources, although
      // some resources may allow a client to request the generation of an appropriate name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // inclusive. This field may be limited in precision depending on context.
      optional int32 nanos = 2;
    }
    
    // ObjectMeta is metadata that all persisted resources must have, which includes all objects
    // users must create.
    message ObjectMeta {
      // Name must be unique within a namespace. Is required when creating resources, although
      // some resources may allow a client to request the generation of an appropriate name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    		// [Unit test set 2]
    		// User asked for a specific PV.
    		logger.V(4).Info("Synchronizing unbound PersistentVolumeClaim, volume requested", "PVC", klog.KObj(claim), "volumeName", claim.Spec.VolumeName)
    		obj, found, err := ctrl.volumes.store.GetByKey(claim.Spec.VolumeName)
    		if err != nil {
    			return err
    		}
    		if !found {
    			// User asked for a PV that does not exist.
    			// OBSERVATION: pvc is "Pending"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			}
    			route := ws.GET(action.Path).To(handler).
    				Doc(doc).
    				Param(ws.QueryParameter("pretty", "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).")).
    				Operation("read"+namespaced+kind+strings.Title(subresource)+operationSuffix).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    	// delete) or an object that cannot have labels (like a
    	// DeploymentRollback or a PodProxyOptions object) is not considered to
    	// match.
    	// Use the object selector only if the webhook is opt-in, because end
    	// users may skip the admission webhook by setting the labels.
    	// Default to the empty LabelSelector, which matches everything.
    	// +optional
    	ObjectSelector *metav1.LabelSelector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top