Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 179 for preset (0.27 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            get() {
                val sourcePsi = when {
                    // array type for vararg parameters is not present in the code, so no need to handle it
                    delegatedTypeRef?.source?.kind == KtFakeSourceElementKind.ArrayTypeFromVarargParameter -> null
    
                    // but the array's underlying type is present with a fake source, and needs to be handled
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    			par = new(Field)
    			par.pos = name.pos
    			par.Name = name
    			par.Type = typ
    		} else {
    			par = p.paramDeclOrNil(name, close)
    		}
    		name = nil // 1st name was consumed if present
    		typ = nil  // 1st type was consumed if present
    		if par != nil {
    			if debug && par.Name == nil && par.Type == nil {
    				panic("parameter without name or type")
    			}
    			if par.Name != nil && par.Type != nil {
    				named++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    		v := fmt.Sprintf("value-%d", totalSize)
    		longParameters[k] = v
    		totalSize = totalSize + len(k) + len(v)
    	}
    
    	errorCases := map[string]storage.StorageClass{
    		"namespace is present": {
    			ObjectMeta:    metav1.ObjectMeta{Name: "foo", Namespace: "bar"},
    			Provisioner:   "kubernetes.io/foo-provisioner",
    			ReclaimPolicy: &deleteReclaimPolicy,
    		},
    		"invalid provisioner": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	// Pod to update. Required.
    	Pod *v1.Pod
    	// MirrorPod is the mirror pod if Pod is a static pod. Optional when UpdateType
    	// is kill or terminated.
    	MirrorPod *v1.Pod
    	// RunningPod is a runtime pod that is no longer present in config. Required
    	// if Pod is nil, ignored if Pod is set.
    	RunningPod *kubecontainer.Pod
    	// KillPodOptions is used to override the default termination behavior of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/proxier.go

    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    	"k8s.io/kubernetes/pkg/util/async"
    	netutils "k8s.io/utils/net"
    )
    
    // KernelCompatTester tests whether the required kernel capabilities are
    // present to run the windows kernel proxier.
    type KernelCompatTester interface {
    	IsCompatible() error
    }
    
    // CanUseWinKernelProxier returns true if we should use the Kernel Proxier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  6. .bazelrc

    build:linux --host_copt=-w
    build:macos --copt=-w
    build:windows --copt=/W0
    build:windows --host_copt=/W0
    
    # Suppress most C++ compiler warnings to reduce log size but allow
    # for specific warnings to still be present.
    build:linux --copt="-Wno-all"
    build:linux --copt="-Wno-extra"
    build:linux --copt="-Wno-deprecated"
    build:linux --copt="-Wno-deprecated-declarations"
    build:linux --copt="-Wno-ignored-attributes"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Sets.java

       * use the {@code TreeSet} constructor directly, taking advantage of <a
       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       *
       * @return a new, empty {@code TreeSet}
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
      public static <E extends Comparable> TreeSet<E> newTreeSet() {
        return new TreeSet<>();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    	// interval in queue so HPAs are processed every resync interval.
    	a.queue.AddRateLimited(key)
    
    	// Register HPA in the hpaSelectors map if it's not present yet. Attaching the Nothing selector
    	// that does not select objects. The actual selector is going to be updated
    	// when it's available during the autoscaler reconciliation.
    	a.hpaSelectorsMux.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    			if len(t) >= 2 && (t[1] == 'p' || t[1] == 'P') {
    				r, rest, err := p.parseUnicodeClass(t, re.Rune0[:0])
    				if err != nil {
    					return nil, err
    				}
    				if r != nil {
    					re.Rune = r
    					t = rest
    					p.push(re)
    					break BigSwitch
    				}
    			}
    
    			// Perl character class escape.
    			if r, rest := p.parsePerlClassEscape(t, re.Rune0[:0]); r != nil {
    				re.Rune = r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            run 'copy'
    
            then:
            executedAndNotSkipped(':copy')
            file('dest').assertHasDescendants('one.txt', 'more/more.txt')
        }
    
        def "copy fails by default when duplicates are present"() {
            given:
            file('dir1/path/file.txt').createFile() << 'f1'
            file('dir2/path/file.txt').createFile() << 'f2'
            buildScript '''
                task copy(type: Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top