Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for does (0.3 sec)

  1. cmd/api-errors.go

    	},
    	ErrNoSuchBucket: {
    		Code:           "NoSuchBucket",
    		Description:    "The specified bucket does not exist",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrNoSuchBucketPolicy: {
    		Code:           "NoSuchBucketPolicy",
    		Description:    "The bucket policy does not exist",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrNoSuchBucketLifecycle: {
    		Code:           "NoSuchBucketLifecycle",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * Returns the elements placed on the classpath for compilation.
         * This method can be invoked when the caller does not support module-path.
         *
         * @throws DependencyResolutionRequiredException if an artifact file is used, but has not been resolved
         *
         * @deprecated This method is unreliable because it does not consider other dependency properties.
         * See {@link org.apache.maven.api.JavaPathType} instead for better analysis.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterators.java

            removeFrom.remove();
            modified = true;
          }
        }
        return modified;
      }
    
      /**
       * Traverses an iterator and removes every element that does not belong to the provided
       * collection. The iterator will be left exhausted: its {@code hasNext()} method will return
       * {@code false}.
       *
       * @param removeFrom the iterator to (potentially) remove elements from
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 18:43:01 GMT 2024
    - 51.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

        return new LocalCache.LocalLoadingCache<>(this, loader);
      }
    
      /**
       * Builds a cache which does not automatically load values when keys are requested.
       *
       * <p>Consider {@link #build(CacheLoader)} instead, if it is feasible to implement a {@code
       * CacheLoader}.
       *
       * <p>This method does not alter the state of this {@code CacheBuilder} instance, so it can be
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

       * view of {@code unfiltered}; changes to one affect the other.
       *
       * <p>The resulting set's iterator does not support {@code remove()}, but all other set methods
       * are supported. When given an element that doesn't satisfy the predicate, the set's {@code
       * add()} and {@code addAll()} methods throw an {@link IllegalArgumentException}. When methods
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    private class ShortenThisLabel(
        override val element: KtThisExpression,
    ) : ElementToShorten() {
        override val nameToImport: FqName? = null
        override val importAllInParent: Boolean = false
    }
    
    /**
     * N.B. Does not subclass [ElementToShorten] because currently
     * there's no reason to do that.
     */
    private class ShortenKDocQualifier(
        val element: KDocName,
    )
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  7. configure.py

          var_name='ANDROID_SDK_HOME',
          var_default=default_sdk_path,
          ask_for_var='Please specify the home path of the Android SDK to use.',
          check_success=valid_sdk_path,
          error_msg=('Either %s does not exist, or it does not contain the '
                     'subdirectories "platforms" and "build-tools".'))
    
      platforms = os.path.join(android_sdk_home_path, 'platforms')
      api_levels = sorted(os.listdir(platforms))
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Iterators.java

            removeFrom.remove();
            modified = true;
          }
        }
        return modified;
      }
    
      /**
       * Traverses an iterator and removes every element that does not belong to the provided
       * collection. The iterator will be left exhausted: its {@code hasNext()} method will return
       * {@code false}.
       *
       * @param removeFrom the iterator to (potentially) remove elements from
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 50.5K bytes
    - Viewed (0)
  9. internal/s3select/select_test.go

    			got, err := io.ReadAll(res)
    			if err != nil {
    				t.Error(err)
    				return
    			}
    			gotS := strings.TrimSpace(string(got))
    			if !reflect.DeepEqual(gotS, testCase.wantResult) {
    				t.Errorf("received response does not match with expected reply. Query: %s\ngot: %s\nwant:%s", testCase.query, gotS, testCase.wantResult)
    			}
    		})
    		t.Run("simd-"+testCase.name, func(t *testing.T) {
    			if !simdjson.SupportedCPU() {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 76.2K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    // Frees the memory used by the `func` struct.
    // TF_DeleteFunction is a noop if `func` is null.
    // Deleting a function does not remove it from any graphs it was copied to.
    TF_CAPI_EXPORT extern void TF_DeleteFunction(TF_Function* func);
    
    // Attempts to evaluate `output`. This will only be possible if `output` doesn't
    // depend on any graph inputs (this function is safe to call if this isn't the
    // case though).
    //
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
Back to top