Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for resultats (0.3 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                List<ProjectBuildingResult> results = doBuild(pomFiles, recursive);
                if (results.stream()
                        .flatMap(r -> r.getProblems().stream())
                        .anyMatch(p -> p.getSeverity() != org.apache.maven.model.building.ModelProblem.Severity.WARNING)) {
                    org.apache.maven.model.building.ModelProblem cycle = results.stream()
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    }
    
    TEST_P(ModularFileSystemTest, TestGetMatchingPathsEmptyFileSystem) {
      std::vector<std::string> results;
      Status status = env_->GetMatchingPaths(GetURIForPath("a*"), &results);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
      EXPECT_EQ(results.size(), 0);
    }
    
    TEST_P(ModularFileSystemTest, TestGetMatchingPathsEmptyPattern) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
  3. tests/query_test.go

    		}
    
    		for idx := range results {
    			results[idx].Name = results[idx].Name + "_new"
    		}
    
    		if err := tx.Save(results).Error; err != nil {
    			t.Fatalf("failed to save users, got error %v", err)
    		}
    
    		return nil
    	}); result.Error != nil || result.RowsAffected != 6 {
    		t.Errorf("Failed to batch find, got error %v, rows affected: %v", result.Error, result.RowsAffected)
    	}
    
    	if totalBatch != 6 {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Thu Apr 25 12:22:53 GMT 2024
    - 49.8K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    	object = encodeDirObject(object)
    	results := make([]struct {
    		zIdx int
    		oi   ObjectInfo
    		err  error
    	}, len(z.serverPools))
    	var wg sync.WaitGroup
    	for i, pool := range z.serverPools {
    		wg.Add(1)
    		go func(i int, pool *erasureSets) {
    			defer wg.Done()
    			results[i].zIdx = i
    			results[i].oi, results[i].err = pool.GetObjectInfo(ctx, bucket, object, opts)
    		}(i, pool)
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 80.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Futures.java

       * a POJO.
       *
       * @param input The future to transform
       * @param function A Function to transform the results of the provided future to the results of
       *     the returned future.
       * @param executor Executor to run the function in.
       * @return A future that holds result of the transformation.
       * @since 9.0 (in 2.0 as {@code compose})
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/bytes/bytes_test.go

    	{"\xff-\xff", "-", -1, []string{"\xff", "\xff"}},
    }
    
    func TestSplit(t *testing.T) {
    	for _, tt := range splittests {
    		a := SplitN([]byte(tt.s), []byte(tt.sep), tt.n)
    
    		// Appending to the results should not change future results.
    		var x []byte
    		for _, v := range a {
    			x = append(v, 'z')
    		}
    
    		result := sliceOfString(a)
    		if !eq(result, tt.a) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    // `src_names` are owned by and have the lifetime of `results`.
    TF_CAPI_EXPORT extern void TF_ImportGraphDefResultsMissingUnusedInputMappings(
        TF_ImportGraphDefResults* results, int* num_missing_unused_input_mappings,
        const char*** src_names, int** src_indexes);
    
    // Deletes a results object returned by TF_GraphImportGraphDefWithResults().
    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)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // the requested amount of items (up to zero items) in the event all requested objects are
      // filtered out and clients should only use the presence of the continue field to determine whether
      // more results are available. Servers may choose not to support the limit argument and will return
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  9. cmd/object-api-multipart_test.go

    				},
    			},
    		},
    		// listMultipartResults - 32.
    		// checking listing with marker set to no of objects in the list.
    		// `NextUploadIDMarker` is expected to be empty since all results are listed.
    		// `NextKeyMarker` is expected to be empty since all results are listed.
    		{
    			MaxUploads:  6,
    			IsTruncated: false,
    			Uploads: []MultipartInfo{
    				{
    					Object:   objectNames[0],
    					UploadID: uploadIDs[4],
    				},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                throw problems.newModelBuilderException();
            }
    
            inputModel = activateFileModel(inputModel, request, result, problems);
    
            problems.setRootModel(inputModel);
    
            ModelData resultData = new ModelData(request.getSource(), inputModel);
            String superModelVersion = inputModel.getModelVersion() != null ? inputModel.getModelVersion() : "4.0.0";
            if (!VALID_MODEL_VERSIONS.contains(superModelVersion)) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
Back to top