Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,252 for whereIs (0.11 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    		s.argNum++
    	} else {
    		s.scanNum()
    	}
    	return true
    }
    
    // parsePrecision scans for a precision. It returns false if there's a bad index expression.
    func (s *formatState) parsePrecision() bool {
    	// If there's a period, there may be a precision.
    	if s.nbytes < len(s.format) && s.format[s.nbytes] == '.' {
    		s.flags = append(s.flags, '.') // Treat precision as a flag.
    		s.nbytes++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/TypeResolver.java

       */
      public TypeResolver where(Type formal, Type actual) {
        Map<TypeVariableKey, Type> mappings = Maps.newHashMap();
        populateTypeMappings(mappings, checkNotNull(formal), checkNotNull(actual));
        return where(mappings);
      }
    
      /** Returns a new {@code TypeResolver} with {@code variable} mapping to {@code type}. */
      TypeResolver where(Map<TypeVariableKey, ? extends Type> mappings) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

            }
    
            where:
            fixConflict | description
            false       | 'conflict fix not applied'
            true        | 'conflict fix applied'
        }
    
        /**
         * This use case corresponds to the case where a library maintainer publishes a library
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/predicates.go

    // isTyped reports whether t is typed; i.e., not an untyped
    // constant or boolean.
    // Safe to call from types that are not fully set up.
    func isTyped(t Type) bool {
    	// Alias and named types cannot denote untyped types
    	// so there's no need to call Unalias or under, below.
    	b, _ := t.(*Basic)
    	return b == nil || b.info&IsUntyped == 0
    }
    
    // isUntyped(t) is the same as !isTyped(t).
    // Safe to call from types that are not fully set up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/runtime/os_linux.go

    	if !(setitimer || timer_create) {
    		// The signal doesn't correspond to a profiling mechanism that the
    		// runtime enables itself. There's no reason to process it, but there's
    		// no reason to ignore it either.
    		return true
    	}
    
    	if mp == nil {
    		// Since we don't have an M, we can't check if there's an active
    		// per-thread timer for this thread. We don't know how long this thread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. ci/official/utilities/code_check_full.bats

    to a banned CUDA dependency when '--define framework_shared_object=false' is set.
    This means that a CUDA target was probably included via an is_static condition,
    used when targeting platforms like Windows where we build statically instead
    of dynamically. Here's the output from bazel query:
    EOF
      cat $BATS_TEST_TMPDIR/out
      [[ ! -s $BATS_TEST_TMPDIR/out ]]
    }
    
    @test "All tensorflow.org/code links point to real files" {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. src/net/http/transfer.go

    		t.BodyCloser = rr.Body
    		t.ContentLength = rr.outgoingLength()
    		if t.ContentLength < 0 && len(t.TransferEncoding) == 0 && t.shouldSendChunkedRequestBody() {
    			t.TransferEncoding = []string{"chunked"}
    		}
    		// If there's a body, conservatively flush the headers
    		// to any bufio.Writer we're writing to, just in case
    		// the server needs the headers early, before we copy
    		// the body and possibly block. We make an exception
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. CHANGELOG.md

        we didn't call `Response.close()` if the coroutine was canceled before its response was
        returned.
    
     *  Upgrade: [Okio 3.9.0][okio_3_9_0].
    
     *  Upgrade: [Kotlin 1.9.23][kotlin_1_9_23].
    
     *  Upgrade: [UnicodeĀ® IDNA 15.1.0][idna_15_1_0]
    
    
    ## Version 5.0.0-alpha.12
    
    _2023-12-17_
    
    We took too long to cut this release and there's a lot of changes in it. We've been busy.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. tests/table_test.go

    		t.Errorf("Table with escape character, got %v", r.Statement.SQL.String())
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Mar 09 09:31:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ConventionAwareHelper.java

            }
    
            if (_ineligiblePropertyNames.contains(propertyName)) {
                // When there's a convention-supporting object, use its `.convention()` method instead
                // This is something we added to support properties migrated in the future from
                // Java bean to Property where old code uses ConventionMapping to set conventions.
                Class<? extends IConventionAware> sourceType = _source.getClass();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top