Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for keynote (0.2 sec)

  1. pkg/controller/tainteviction/taint_eviction.go

    		return
    	}
    	minTolerationTime := getMinTolerationTime(usedTolerations)
    	// getMinTolerationTime returns negative value to denote infinite toleration.
    	if minTolerationTime < 0 {
    		logger.V(4).Info("Current tolerations for pod tolerate forever, cancelling any scheduled deletion", "pod", podNamespacedName.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typexpr.go

    // If an error occurred, x.mode is set to invalid.
    // For the meaning of def, see Checker.definedType, below.
    // If wantType is set, the identifier e is expected to denote a type.
    func (check *Checker) ident(x *operand, e *syntax.Name, def *TypeName, wantType bool) {
    	x.mode = invalid
    	x.expr = e
    
    	// Note that we cannot use check.lookup here because the returned scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		// Some systems use leading _ to denote non-assembly symbols.
    		return s == "__cgodebug_ints" || s == "___cgodebug_ints"
    	}
    	isDebugFloats := func(s string) bool {
    		// Some systems use leading _ to denote non-assembly symbols.
    		return s == "__cgodebug_floats" || s == "___cgodebug_floats"
    	}
    	indexOfDebugStr := func(s string) int {
    		// Some systems use leading _ to denote non-assembly symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/resolver.go

    						name = "_Ctype_" + typ.Sel.Value
    					}
    				}
    			}
    			if name == "" {
    				return false, nil
    			}
    		default:
    			return false, nil
    		}
    
    		// name must denote an object found in the current package scope
    		// (note that dot-imported objects are not in the package scope!)
    		obj := check.pkg.scope.Lookup(name)
    		if obj == nil {
    			return false, nil
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/go/types/resolver.go

    						name = "_Ctype_" + typ.Sel.Name
    					}
    				}
    			}
    			if name == "" {
    				return false, nil
    			}
    		default:
    			return false, nil
    		}
    
    		// name must denote an object found in the current package scope
    		// (note that dot-imported objects are not in the package scope!)
    		obj := check.pkg.scope.Lookup(name)
    		if obj == nil {
    			return false, nil
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	UnaddressableFieldAssign
    
    	/* decls > type (+ other type expression codes) */
    
    	// NotAType occurs when the identifier used as the underlying type in a type
    	// declaration or the right-hand side of a type alias does not denote a type.
    	//
    	// Example:
    	//  var S = 2
    	//
    	//  type T S
    	NotAType
    
    	// InvalidArrayLen occurs when an array length is not a constant value.
    	//
    	// Example:
    	//  var n = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. doc/go_spec.html

    </p>
    
    <p>
    The form <code>a … b</code> represents the set of characters from
    <code>a</code> through <code>b</code> as alternatives. The horizontal
    ellipsis <code>…</code> is also used elsewhere in the spec to informally denote various
    enumerations or code snippets that are not further specified. The character <code>…</code>
    (as opposed to the three characters <code>...</code>) is not a token of the Go
    language.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  8. src/cmd/dist/test.go

    	if goos == "darwin" || ((goos == "linux" || goos == "windows") && goarch == "amd64") {
    		t.registerTest("API release note check", &goTest{variant: "check", pkg: "cmd/relnote", testFlags: []string{"-check"}})
    		t.registerTest("API check", &goTest{variant: "check", pkg: "cmd/api", timeout: 5 * time.Minute, testFlags: []string{"-check"}})
    	}
    
    	// Runtime CPU tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // There are currently two types of anti-affinity:
      //    "requiredDuringSchedulingIgnoredDuringExecution"
      //    "preferredDuringSchedulingIgnoredDuringExecution"
      // which denote “hard” vs. “soft” requirements, you can define your values
      // in "podAntiAffinityLabelSelector" and "podAntiAffinityTermLabelSelector"
      // correspondingly.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/MapMakerInternalMap.java

        }
    
        @Override
        public Object getValue() {
          throw new AssertionError();
        }
      }
    
      /**
       * A singleton {@link WeakValueReference} used to denote an unset value in an entry with weak
       * values.
       */
      static final WeakValueReference<Object, Object, DummyInternalEntry> UNSET_WEAK_VALUE_REFERENCE =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top