Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 635 for discarded (0.15 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            succeeds 'publish'
    
            then:
            module.assertPublishedAsJavaModule()
            if (GradleContextualExecuter.isConfigCache()) {
                postBuildOutputContains("Configuration cache entry discarded")
            }
        }
    
        def "can publish to authenticated repository with name not valid as identity as long as one uses inlined credentials "() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

                tasks.named("jar") { dependsOn("printValue") }
            """)
    
            when:
            configurationCacheFails()
    
            then:
            outputContains("Configuration cache entry discarded with 1 problem.")
            problems.assertFailureHasProblems(failure) {
                totalProblemsCount = 1
                // TODO(mlopatkin): Is it possible to figure out a correct location? Report falls back to "Gradle runtime"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. pkg/kubelet/pleg/evented.go

    func (e *EventedPLEG) sendPodLifecycleEvent(event *PodLifecycleEvent) {
    	select {
    	case e.eventChannel <- event:
    	default:
    		// record how many events were discarded due to channel out of capacity
    		metrics.PLEGDiscardEvents.Inc()
    		klog.ErrorS(nil, "Evented PLEG: Event channel is full, discarded pod lifecycle event")
    	}
    }
    
    func getPodSandboxState(podStatus *kubecontainer.PodStatus) kubecontainer.State {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java

             */
            void update(@Nonnull ByteBuffer input);
    
            /**
             * Returns the algorithm end result as string, never {@code null}. After invoking this method, this instance should
             * be discarded and not reused. For new checksum calculation you have to get new instance.
             */
            @Nonnull
            String checksum();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 21 08:05:10 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/table.go

    			unesc = tableUnescape
    			i++
    			continue
    		}
    		if c == '|' {
    			out = append(out, p.newText(pos, unesc(strings.Trim(string(row[start:i]), " \t\v\f"))))
    			if len(out) == width {
    				// Extra cells are discarded!
    				return out
    			}
    			start = i + 1
    			unesc = nop
    		}
    	}
    	out = append(out, p.newText(pos, unesc(strings.Trim(string(row[start:]), " \t\v\f"))))
    	for len(out) < width {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/ClassPathToClassLoaderCache.java

     * reused, so they *must not* be cleared as long as a cached loader is in cache - once a classloader is discarded from the cache, it must be cleared using a cleanup strategy
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CacheProjectIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/13367")
        @Test
        @UnsupportedWithConfigurationCache(because = "Test always passes with cc because we don't rerun config phase on second run")
        void "recovers from discarded empty classes directory from classpath entry"() {
            given:
            buildFile << """
                task hello1 {
                    def f = file("build/test.txt")
                    outputs.file(f)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactSetToFileCollectionFactory.java

                        artifactSets.add((ResolvedArtifactSet) element);
                    } else {
                        // Should not be used, and cannot be provided as the artifact metadata may have been discarded.
                        throw new UnsupportedOperationException();
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/os/user/lookup_unix.go

    // the end of the file is reached without a match.
    //
    // readCols is the minimum number of colon-separated fields that will be passed
    // to fn; in a long line additional fields may be silently discarded.
    func readColonFile(r io.Reader, fn lineFunc, readCols int) (v any, err error) {
    	rd := bufio.NewReader(r)
    
    	// Read the file line-by-line.
    	for {
    		var isPrefix bool
    		var wholeLine []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerManager.java

        /**
         * Uses the given object as a logger. Each listener class has exactly one logger associated with it. Any existing
         * logger for the listener class is discarded. Loggers are otherwise treated the same way as listeners.
         *
         * @param logger The new logger to use.
         */
        void useLogger(Object logger);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top