Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Uploadable (0.14 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    					// the counter data contained therein was all from after the asof
    					// date.
    					//
    					// TODO(rfindley): store the begin date in reports, so that we can
    					// verify this assumption.
    					u.logger.Printf("Uploadable: %s", fi.Name())
    					ans.readyfiles = append(ans.readyfiles, filepath.Join(localdir, fi.Name()))
    				}
    			} else {
    				// ...otherwise fall back on the old behavior of uploading all
    				// unuploaded files.
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		X:        computeRandom(), // json encodes all the bits
    		Week:     expiryDate,
    		LastWeek: lastWeek,
    	}
    	if report.X > u.config.SampleRate && u.config.SampleRate > 0 {
    		u.logger.Printf("X: %f > SampleRate:%f, not uploadable", report.X, u.config.SampleRate)
    		uploadOK = false
    	}
    	var succeeded bool
    	for _, f := range countFiles {
    		fok := false
    		x, err := u.parseCountFile(f)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestFailureIntegrationTest.groovy

                        }
                    }
                }
            """.stripIndent()
            file('src/test/java/org/gradle/Unloadable.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    
                public class Unloadable {
                    static {
                        fail("failed");
                    }
    
                    @Test
                    public void ok() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/ClassPath.java

      }
    
      /**
       * Returns all resources loadable from the current class path, including the class files of all
       * loadable classes but excluding the "META-INF/MANIFEST.MF" file.
       */
      public ImmutableSet<ResourceInfo> getResources() {
        return resources;
      }
    
      /**
       * Returns all classes loadable from the current class path.
       *
       * @since 16.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/ClassPath.java

      }
    
      /**
       * Returns all resources loadable from the current class path, including the class files of all
       * loadable classes but excluding the "META-INF/MANIFEST.MF" file.
       */
      public ImmutableSet<ResourceInfo> getResources() {
        return resources;
      }
    
      /**
       * Returns all classes loadable from the current class path.
       *
       * @since 16.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/Module.java

     * limitations under the License.
     */
    package org.gradle.api.internal.classpath;
    
    import org.gradle.internal.classpath.ClassPath;
    
    import java.util.Set;
    
    /**
     * Meta-data about a dynamically loadable module.
     */
    public interface Module {
        /**
         * Returns the classpath for the module implementation. This is the classpath of the module itself. Does not include any dependencies.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * A registry of dynamically loadable modules.
     */
    @ServiceScope(Scope.Global.class)
    public interface ModuleRegistry {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/NonDeclarativePluginUseIntegrationSpec.groovy

                    Gradle Central Plugin Repository(${pluginRepo.uri})
            """.stripIndent().trim()))
            failure.assertHasLineNumber(2)
        }
    
        def "failure due to plugin class is unloadable"() {
            when:
            pluginBuilder.with {
                addUnloadablePlugin(PLUGIN_ID, "OtherPlugin")
                publishAs(GROUP, ARTIFACT, VERSION, pluginRepo, executer).allowAll()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

        String pluralCategoryOrTagName = "categories"
    
        @Override
        boolean supportsCategoryOnNestedClass() {
            return !(version in ['4.10', '4.11', '4.12'])
        }
    
        def 'reports unloadable #type'() {
            given:
            testSources.with {
                testClass('SomeTestClass').with {
                    testMethod('ok1')
                    testMethod('ok2')
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutor.java

                for (Deployment deployment : deploymentRegistry.getRunningDeployments()) {
                    ((DeploymentInternal) deployment).outOfDate();
                }
                logger.println().println("Reloadable deployment detected. Entering continuous build.");
                resetBuildStartedTime();
                ContinuousExecutionGate deploymentRequestExecutionGate = deploymentRegistry.getExecutionGate();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top