Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 619 for absence (0.25 sec)

  1. src/cmd/go/internal/modload/query.go

    		if origin.TagSum == "" {
    			return fmt.Errorf("query %q requires a TagSum", query)
    		}
    
    	default:
    		// The query may be "latest" or a version inequality or prefix.
    		// Its result depends on the absence of higher tags matching the query,
    		// not just the state of an individual ref or tag.
    		if origin.TagSum == "" {
    			return fmt.Errorf("query %q requires a TagSum", query)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Ascii.java

       *
       * @since 8.0
       */
      public static final byte NAK = 21;
    
      /**
       * Synchronous Idle: A communication control character used by a synchronous transmission system
       * in the absence of any other character to provide a signal from which synchronism may be
       * achieved or retained.
       *
       * @since 8.0
       */
      public static final byte SYN = 22;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

      }
    
      // this doc comment is a modified copy of the inherited doc comment,
      // without the reference to unlimited queues.
      /**
       * Returns the number of additional elements that this queue can ideally (in the absence of memory
       * or resource constraints) accept without blocking. This is always equal to the initial capacity
       * of this queue less the current {@code size} of this queue.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/local/istiod_analyze.go

    		_, err := c.Kube().CoreV1().Namespaces().Get(context.TODO(), sa.istioNamespace.String(), metav1.GetOptions{})
    		if kerrors.IsNotFound(err) {
    			// An AnalysisMessage already show up to warn the absence of istio-system namespace, so making it debug level.
    			scope.Analysis.Debugf("%v namespace not found. Istio may not be installed in the target cluster. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    	// TODO: merge the use of this in the trie.
    	v, sz := trie.lookupString(s)
    	x := info(v)
    	if x.isModifier() {
    		return &labelError{s, "V5"}
    	}
    	// Quickly return in the absence of zero-width (non) joiners.
    	if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 {
    		return nil
    	}
    	st := stateStart
    	for i := 0; ; {
    		jt := x.joinType()
    		if s[i:i+sz] == zwj {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    `boolean`, `Boolean`, `Property<Boolean>`::
    Describes an option with the value `true` or `false`. +
    Passing the option on the command line treats the value as `true`.
    For example, `--foo` equates to `true`. +
    The absence of the option uses the default value of the property.
    For each boolean option, an opposite option is created automatically.
    For example, `--no-foo` is created for the provided option `--foo` and `--bar` is created for `--no-bar`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/preemption/preemption.go

    		nodeName := node.Node().Name
    		// We only attempt preemption on nodes with status 'Unschedulable'. For
    		// diagnostic purposes, we propagate UnschedulableAndUnresolvable if either
    		// implied by absence in map or explicitly set.
    		status, ok := m[nodeName]
    		if status.Code() == framework.Unschedulable {
    			potentialNodes = append(potentialNodes, node)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. src/cmd/covdata/tool_test.go

    	re      *regexp.Regexp
    	negate  bool
    	nonzero bool
    	zero    bool
    }
    
    // runDumpChecks examines the output of "go tool covdata debugdump"
    // for a given output directory, looking for the presence or absence
    // of specific markers.
    func runDumpChecks(t *testing.T, s state, dir string, flags []string, checks []dumpCheck) {
    	dargs := []string{"-i", dir}
    	dargs = append(dargs, flags...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Ascii.java

       *
       * @since 8.0
       */
      public static final byte NAK = 21;
    
      /**
       * Synchronous Idle: A communication control character used by a synchronous transmission system
       * in the absence of any other character to provide a signal from which synchronism may be
       * achieved or retained.
       *
       * @since 8.0
       */
      public static final byte SYN = 22;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    // RegisterWithArrangement, RegisterWithArrangementAndIndex.
    type Arg interface {
    	isArg()
    	String() string
    }
    
    // A Reg is a single register.
    // The zero value denotes W0, not the absence of a register.
    type Reg uint16
    
    const (
    	W0 Reg = iota
    	W1
    	W2
    	W3
    	W4
    	W5
    	W6
    	W7
    	W8
    	W9
    	W10
    	W11
    	W12
    	W13
    	W14
    	W15
    	W16
    	W17
    	W18
    	W19
    	W20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top