Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 446 for Result (0.24 sec)

  1. cmd/erasure-multipart.go

    		}
    	}
    	for uploadIndex < len(uploads) {
    		result.Uploads = append(result.Uploads, uploads[uploadIndex])
    		result.NextUploadIDMarker = uploads[uploadIndex].UploadID
    		uploadIndex++
    		if len(result.Uploads) == maxUploads {
    			break
    		}
    	}
    
    	result.IsTruncated = uploadIndex < len(uploads)
    
    	if !result.IsTruncated {
    		result.NextKeyMarker = ""
    		result.NextUploadIDMarker = ""
    	}
    
    	return result, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

        /**
         * A suffix for the result file to distinguish it from the results of other session invalidation tests if the results are different.
         */
        protected abstract val resultFileSuffix: String?
    
        protected abstract fun getSession(ktModule: KtModule): SESSION
    
        protected abstract fun getSessionKtModule(session: SESSION): KtModule
    
        protected abstract fun isSessionValid(session: SESSION): Boolean
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

            }
    
            private static String fqid(Map<String, Object> id) {
                String result = id['name']
                def parent = id['group']
                while (parent != null) {
                    result = "${parent['name']}:$result"
                    parent = parent['parent']
                }
                result
            }
    
            String getFqid() {
                fqid
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

                    doLast { }
                }
            """
    
            when:
            configurationCacheRun("ok")
    
            then:
            result.assertHasPostBuildOutput("Configuration cache entry stored.")
    
            when:
            configurationCacheRun("ok")
    
            then:
            result.assertHasPostBuildOutput("Configuration cache entry reused.")
    
            when:
            configurationCacheFails("broken")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildTreeWorkController.kt

            }
            val executionResult = workGraph.withNewWorkGraph { graph ->
                val result = cache.loadOrScheduleRequestedTasks(
                    graph = graph,
                    graphBuilder = scheduleTaskSelectorPostProcessing
                ) { workPreparer.scheduleRequestedTasks(graph, taskSelector) }
                if (!result.wasLoadedFromCache && !result.entryDiscarded && startParameter.loadAfterStore) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FetchModelsMultipleTimesForEachProject.java

        @Override
        public List<SomeToolingModel> execute(BuildController controller) {
            List<SomeToolingModel> result = new ArrayList<>();
            result.addAll(new FetchCustomModelForEachProject().execute(controller));
            result.addAll(new FetchCustomModelForEachProject().execute(controller));
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            problems.assertResultHasProblems(result)
            outputDoesNotContain("apply =")
            outputContains("task = $value")
    
            when:
            configurationCacheRun("thing", "-DCI=$newValue")
    
            then: 'undeclared properties are considered build inputs'
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result)
            outputContains("apply = $newValue")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

            }
            with(fixture.all(LoadProjectsBuildOperationType)) {
                size() == 2
                with(get(0)) {
                    result.rootProject.name == 'thing'
                    result.rootProject.path == ':'
                    result.rootProject.children.size() == 3
                    with(result.rootProject.children.first() as Map<String, Object>) {
                        name == 'a'
                        path == ':a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.cc

                                                     &result)) {
        LOG(ERROR) << "Failed to export MLIR to flatbuffer.";
        return absl::InternalError("Failed to export MLIR to flatbuffer.");
      }
      builder->PushFlatBuffer(reinterpret_cast<const uint8_t*>(result.data()),
                              result.size());
    
      return absl::OkStatus();
    }
    
    }  // namespace lite
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            StringBuilder result = new StringBuilder();
            for (String jvmArg : jvmArgs) {
                if (result.length() > 0) {
                    result.append(" ");
                }
                if (jvmArg.contains(" ")) {
                    assert !jvmArg.contains("\"") : "jvmArg '" + jvmArg + "' contains '\"'";
                    result.append('"');
                    result.append(jvmArg);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top