Search Options

Results per page
Sort
Preferred Languages
Advance

Results 351 - 360 of 2,326 for light (0.12 sec)

  1. test/fixedbugs/issue15091.go

    // or (now, with the error caught earlier)
    //    Treating auto as if it were arg, func (*Html).xyzzy, node ...
    // caused by racewalker inserting instrumentation before an OAS where the Ninit
    // of the OAS defines part of its right-hand-side. (I.e., the race instrumentation
    // references a variable before it is defined.)
    func (options *Html) xyzzy(id string) string {
    	for count, found := options.headerIDs[id]; found; count, found = options.headerIDs[id] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 989 bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/RegularContiguousSet.java

          }
        };
      }
    
      private static boolean equalsOrThrow(Comparable<?> left, @CheckForNull Comparable<?> right) {
        return right != null && Range.compareOrThrow(left, right) == 0;
      }
    
      @Override
      boolean isPartialView() {
        return false;
      }
    
      @Override
      public C first() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractCaseVfsRelativePathTest.groovy

            equalChars(slash, backslash, caseSensitivity)
            equalChars(backslash, slash, caseSensitivity)
        }
    
        def "can compare path separator chars correctly (#left - #right = #result)"() {
            def char1 = left as char
            def char2 = right as char
    
            expect:
            compareCharsIgnoringCase(char1, char2) == result
            compareCharsIgnoringCase(char2, char1) == -result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/failure/mappers/MockFailure.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.failure.mappers
    
    /**
     * Simple AssertionError subclass to test with
     * This makes it sure we catch the right assertion error
     */
    class MockFailure extends AssertionError {
        MockFailure(int detailMessage) {
            super(detailMessage)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 909 bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/response-model.md

    ### Disable Response Model
    
    Continuing from the example above, you might not want to have the default data validation, documentation, filtering, etc. that is performed by FastAPI.
    
    But you might want to still keep the return type annotation in the function to get the support from tools like editors and type checkers (e.g. mypy).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

      // same type, for one we might assign a resource type ID and for the other
      // a resource instance ID. That means, they will be treated as non-aliasing.
      // This is correct for all current cases. A problematic case could be if we
      // had two ops A and B, A has the `ResourceHandleAllocatorInterface` and B has
      // not, and both ops might return a handle to the same resource (depending on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_gpu_device.cc

        return absl::OkStatus();
      }
    
      auto platform = se::PlatformManager::PlatformWithName(se::GpuPlatformName());
      if (!platform.ok()) {
        // Treat failures as non-fatal; there might not be a GPU in the machine.
        VLOG(1) << "Failed to create XLA_GPU device: " << platform.status();
        return absl::OkStatus();
      }
    
      int device_count = platform.value()->VisibleDeviceCount();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_arm.S

     * must be saved explicitly.
     */
    .globl crosscall1
    crosscall1:
    	push {r4, r5, r6, r7, r8, r9, r10, r11, ip, lr}
    	mov r4, r0
    	mov r5, r1
    	mov r0, r2
    
    	// Because the assembler might target an earlier revision of the ISA
    	// by default, we encode BLX as a .word.
    	.word 0xe12fff35 // blx r5 // setg(g)
    	.word 0xe12fff34 // blx r4 // fn()
    
    	pop {r4, r5, r6, r7, r8, r9, r10, r11, ip, pc}
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 03:39:42 UTC 2023
    - 849 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/TargetMachine.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform;
    
    import org.gradle.api.tasks.Nested;
    
    /**
     * Represents a combination of operating system and cpu architecture that a variant might be built for.
     *
     * @since 5.1
     */
    public interface TargetMachine {
        /**
         * Returns the target operating system
         */
        @Nested
        OperatingSystemFamily getOperatingSystemFamily();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/AfterExecutionState.java

    import org.gradle.internal.hash.HashCode;
    
    /**
     * Captures the state of a {@link org.gradle.internal.execution.UnitOfWork} after it has been executed.
     *
     * Execution here might also mean being up-to-date or loaded from cache.
     */
    public interface AfterExecutionState extends ExecutionInputState, ExecutionOutputState {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top