Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for nonnegative (0.37 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Xor64", argLength: 2, commutative: true},
    
    	// For shifts, AxB means the shifted value has A bits and the shift amount has B bits.
    	// Shift amounts are considered unsigned.
    	// If arg1 is known to be nonnegative and less than the number of bits in arg0,
    	// then auxInt may be set to 1.
    	// This enables better code generation on some platforms.
    	{name: "Lsh8x8", argLength: 2, aux: "Bool"}, // arg0 << arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

       */
      @CanIgnoreReturnValue
      public static int advance(Iterator<?> iterator, int numberToAdvance) {
        checkNotNull(iterator);
        checkArgument(numberToAdvance >= 0, "numberToAdvance must be nonnegative");
    
        int i;
        for (i = 0; i < numberToAdvance && iterator.hasNext(); i++) {
          iterator.next();
        }
        return i;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

       * start}, calling {@link #matches} for each character.
       *
       * @param sequence the character sequence to examine
       * @param start the first index to examine; must be nonnegative and no greater than {@code
       *     sequence.length()}
       * @return the index of the first matching character, guaranteed to be no less than {@code start},
       *     or {@code -1} if no character matches
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Iterators.java

       */
      @CanIgnoreReturnValue
      public static int advance(Iterator<?> iterator, int numberToAdvance) {
        checkNotNull(iterator);
        checkArgument(numberToAdvance >= 0, "numberToAdvance must be nonnegative");
    
        int i;
        for (i = 0; i < numberToAdvance && iterator.hasNext(); i++) {
          iterator.next();
        }
        return i;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CharMatcher.java

       * start}, calling {@link #matches} for each character.
       *
       * @param sequence the character sequence to examine
       * @param start the first index to examine; must be nonnegative and no greater than {@code
       *     sequence.length()}
       * @return the index of the first matching character, guaranteed to be no less than {@code start},
       *     or {@code -1} if no character matches
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		st.advance(1)
    	}
    	// We don't currently print out the discriminator, so we don't
    	// save it.
    	return a
    }
    
    // closureTypeName parses:
    //
    //	<closure-type-name> ::= Ul <lambda-sig> E [ <nonnegative number> ] _
    //	<lambda-sig> ::= <parameter type>+
    func (st *state) closureTypeName() AST {
    	st.checkChar('U')
    	st.checkChar('l')
    
    	oldLambdaTemplateLevel := st.lambdaTemplateLevel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        for (const auto& crops_value : crops_range) {
          int64_t crops_value_int = crops_value.getSExtValue();
          if (crops_value_int < 0)
            return op.emitOpError()
                   << "requires all crop values to be nonnegative, but got "
                   << crops_attr;
    
          crops_values.push_back(crops_value_int);
        }
      }
    
      auto output_type = mlir::cast<TensorType>(op.getOutput().getType());
      if (output_type.hasRank()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverTest.groovy

        }
    
        @Test public void testResolveAbsoluteFileURIString() {
            File absoluteFile = new File('nonRelative').canonicalFile
            assertEquals(absoluteFile, baseDirConverter.resolve(absoluteFile.toURI().toString()))
        }
    
        @Test public void testResolveAbsoluteFileURI() {
            File absoluteFile = new File('nonRelative').canonicalFile
            assertEquals(absoluteFile, baseDirConverter.resolve(absoluteFile.toURI()))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:52 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    		return isNonNegative(v.Args[0])
    
    	case OpAnd64, OpAnd32, OpAnd16, OpAnd8:
    		return isNonNegative(v.Args[0]) || isNonNegative(v.Args[1])
    
    	case OpMod64, OpMod32, OpMod16, OpMod8,
    		OpDiv64, OpDiv32, OpDiv16, OpDiv8,
    		OpOr64, OpOr32, OpOr16, OpOr8,
    		OpXor64, OpXor32, OpXor16, OpXor8:
    		return isNonNegative(v.Args[0]) && isNonNegative(v.Args[1])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    // boundsCheck generates bounds checking code. Checks if 0 <= idx <[=] len, branches to exit if not.
    // Starts a new block on return.
    // On input, len must be converted to full int width and be nonnegative.
    // Returns idx converted to full int width.
    // If bounded is true then caller guarantees the index is not out of bounds
    // (but boundsCheck will still extend the index to full int width).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top