Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,844 for Preferences (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    [[customizing_wrapper]]
    == Customizing the Gradle Wrapper
    
    Most users of Gradle are happy with the default runtime behavior of the Wrapper.
    However, organizational policies, security constraints or personal preferences might require you to dive deeper into customizing the Wrapper.
    
    Thankfully, the built-in `wrapper` task exposes numerous options to bend the runtime behavior to your needs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

        Log-Output "GCE Windows image:`n$image"
      } Catch { }
    }
    
    # Configures Window Defender preferences
    function Configure-WindowsDefender {
      if ((Get-WindowsFeature -Name 'Windows-Defender').Installed) {
        Log-Output "Configuring Windows Defender preferences"
        Set-MpPreference -SubmitSamplesConsent NeverSend
        Log-Output "Disabling Windows Defender sample submission"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_static.go

    		if numMatching < request {
    			return
    		}
    
    		// Otherwise, create a new hint from the numa node bitmask and add it to the
    		// list of hints.  We set all hint preferences to 'false' on the first
    		// pass through.
    		hints = append(hints, topologymanager.TopologyHint{
    			NUMANodeAffinity: mask,
    			Preferred:        false,
    		})
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  4. cmd/dependencyverifier/dependencyverifier.go

    			}
    			return ri.version < rj.version
    		})
    		for _, referencer := range unwantedToReferencers[unwanted] {
    			// make sure any reference at all shows up as a non-nil status
    			if config.Status.UnwantedReferences == nil {
    				config.Status.UnwantedReferences[unwanted] = []string{}
    			}
    			// record specific names of versioned referents
    			if referencer.version != "" && referencer.version != "v0.0.0" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_test.go

    	}
    	if state.DidResume {
    		t.Fatalf("handshake resumed at a higher version")
    	}
    }
    
    // Note: see comment in handshake_test.go for details of how the reference
    // tests work.
    
    // serverTest represents a test of the TLS server handshake against a reference
    // implementation.
    type serverTest struct {
    	// name is a freeform string identifying the test and the file in which
    	// the expected results will be stored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ====
    <1> `doLast` action captures the references from the enclosing scope. These captured references are also serialized to the configuration cache.
    <2> Compare the reference to an object of user-defined class stored in the task field and the reference captured in the `doLast` action.
    <3> Compare the reference to `ArrayList` instance stored in the task field and the reference captured in the `doLast` action.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/internal/Finalizer.java

        }
      }
    
      /**
       * Cleans up the given reference and any other references already in the queue. Catches and logs
       * all throwables.
       *
       * @return true if the caller should continue to wait for more references to be added to the
       *     queue, false if the associated FinalizableReferenceQueue is no longer referenced.
       */
      private boolean cleanUp(Reference<?> firstReference) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 23 12:54:09 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/internal/Finalizer.java

        }
      }
    
      /**
       * Cleans up the given reference and any other references already in the queue. Catches and logs
       * all throwables.
       *
       * @return true if the caller should continue to wait for more references to be added to the
       *     queue, false if the associated FinalizableReferenceQueue is no longer referenced.
       */
      private boolean cleanUp(Reference<?> firstReference) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 23 12:54:09 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/generated.proto

      // APIGroup is the group for the resource being referenced
      optional string apiGroup = 1;
    
      // Kind is the type of resource being referenced
      optional string kind = 2;
    
      // Name is the name of resource being referenced
      optional string name = 3;
    }
    
    // Subject contains a reference to the object or user identities a role binding applies to.  This can either hold a direct API object reference,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/rbac/v1/generated.proto

      // APIGroup is the group for the resource being referenced
      optional string apiGroup = 1;
    
      // Kind is the type of resource being referenced
      optional string kind = 2;
    
      // Name is the name of resource being referenced
      optional string name = 3;
    }
    
    // Subject contains a reference to the object or user identities a role binding applies to.  This can either hold a direct API object reference,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top