Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for froward (0.22 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

        private final NavigableSet<E> forward;
    
        DescendingSet(NavigableSet<E> forward) {
          this.forward = forward;
        }
    
        @Override
        protected NavigableSet<E> delegate() {
          return forward;
        }
    
        @Override
        @CheckForNull
        public E lower(@ParametricNullness E e) {
          return forward.higher(e);
        }
    
        @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 77.2K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

      ExecuteAdd(
          /*async=*/false,
          /*forward_input*/ false,
          /*tfrt*/ false);
    }
    // TODO(b/234067483): Investigate flakiness and re-enable.
    TEST(CAPI, DISABLED_ExecuteAddAsync) {
      ExecuteAdd(
          /*async=*/true,
          /*forward_input*/ false,
          /*tfrt*/ false);
    }
    TEST(CAPI, ExecuteAddForward) {
      ExecuteAdd(
          /*async=*/false,
          /*forward_input*/ true,
          /*tfrt*/ false);
    }
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
  3. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                              "allow_connect": true
                            },
                            "server_name": "istio-envoy",
                            "forward_client_cert_details": "APPEND_FORWARD",
                            "set_current_client_cert_details": {
                              "subject": true,
                              "dns": true,
                              "uri": true
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump.json

                              "allow_connect": true
                            },
                            "server_name": "istio-envoy",
                            "use_remote_address": false,
                            "forward_client_cert_details": "APPEND_FORWARD",
                            "set_current_client_cert_details": {
                              "subject": true,
                              "dns": true,
                              "uri": true
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/SetsTest.java

      public void testPowerSetEquals_independentOfOrder() {
        ImmutableSet<Integer> elements = ImmutableSet.of(1, 2, 3, 4);
        Set<Set<Integer>> forward = powerSet(elements);
        Set<Set<Integer>> reverse = powerSet(ImmutableSet.copyOf(elements.asList().reverse()));
        new EqualsTester().addEqualityGroup(forward, reverse).testEquals();
      }
    
      /**
       * Test that a hash code miscomputed by "input.hashCode() * tooFarValue / 2" is correct under our
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 49.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

      /**
       * Returns the index of the first matching BMP character in a character sequence, or {@code -1} if
       * no matching character is present.
       *
       * <p>The default implementation iterates over the sequence in forward order calling {@link
       * #matches} for each character.
       *
       * @param sequence the character sequence to examine from the beginning
       * @return an index, or {@code -1} if no character matches
       */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/CharMatcher.java

      /**
       * Returns the index of the first matching BMP character in a character sequence, or {@code -1} if
       * no matching character is present.
       *
       * <p>The default implementation iterates over the sequence in forward order calling {@link
       * #matches} for each character.
       *
       * @param sequence the character sequence to examine from the beginning
       * @return an index, or {@code -1} if no character matches
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional int64 seconds = 1;
    
      // Non-negative fractions of a second at nanosecond resolution. Negative
      // second values with fractions must still have non-negative nanos values
      // that count forward in time. Must be from 0 to 999,999,999
      // inclusive. This field may be limited in precision depending on context.
      optional int32 nanos = 2;
    }
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    				{Name: "newPrefix0"},
    				{Name: "newPrefix1"},
    			},
    			Prefixes: []string{"newzen/"},
    		},
    		// ListObjectsResult-27.
    		// Prefix is set to "Asia/India/" in the testCase, and delimiter is set to forward slash '/' (testCase 59).
    		27: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "Asia/India/India-summer-photos-1"},
    			},
    			Prefixes: []string{"Asia/India/Karnataka/"},
    		},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jan 30 20:43:25 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  10. .bazelrc

    # This is the same as the official TensorFlow builds.
    # See https://developer.nvidia.com/cuda-gpus#compute
    # `compute_XY` enables PTX embedding in addition to SASS. PTX
    # is forward compatible beyond the current compute capability major
    # release while SASS is only forward compatible inside the current
    # major release. Example: sm_80 kernels can run on sm_89 GPUs but
    # not on sm_90 GPUs. compute_80 kernels though can also run on sm_90 GPUs.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
Back to top