Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 635 for discarded (0.14 sec)

  1. pkg/kubelet/winstats/perfcounters_test.go

    			counter:   bytesSentPerSecondQuery,
    			skipCheck: true,
    		},
    		"Net Adapter Packets Received Discarded Query": {
    			counter:   packetsReceivedDiscardedQuery,
    			skipCheck: true,
    		},
    		"Net Adapter Packets Received Errors Query": {
    			counter:   packetsReceivedErrorsQuery,
    			skipCheck: true,
    		},
    		"Net Adapter Packets Outbound Discarded Query": {
    			counter:   packetsOutboundDiscardedQuery,
    			skipCheck: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/runtime/tagptr_32bit.go

    const taggedPointerBits = 32
    
    // On 32-bit systems, taggedPointer has a 32-bit pointer and 32-bit count.
    
    // taggedPointerPack created a taggedPointer from a pointer and a tag.
    // Tag bits that don't fit in the result are discarded.
    func taggedPointerPack(ptr unsafe.Pointer, tag uintptr) taggedPointer {
    	return taggedPointer(uintptr(ptr))<<32 | taggedPointer(tag)
    }
    
    // Pointer returns the pointer from a taggedPointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:22:50 UTC 2023
    - 927 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildProblemReportingIntegrationTest.groovy

                    doLast { t -> t.project }
                }
            """
    
            when:
            configurationCacheFails ":inc:sub:broken"
    
            then:
            outputContains "Configuration cache entry discarded with 3 problems."
            problems.assertFailureHasProblems(failure) {
                withProblem("Build file 'inc/sub/build.gradle': line 2: registration of listener on 'Gradle.buildFinished' is unsupported".replace('/', File.separator))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/extensions.go

    		if err != nil {
    			log.Warnf("wasmplugin %v/%v discarded due to json marshaling error: %s", p.Namespace, p.Name, err)
    			return nil
    		}
    		cfg = protoconv.MessageToAny(&wrapperspb.StringValue{
    			Value: cfgJSON,
    		})
    	}
    
    	u, err := url.Parse(plugin.Url)
    	if err != nil {
    		log.Warnf("wasmplugin %v/%v discarded due to failure to parse URL: %s", p.Namespace, p.Name, err)
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_dup_cache.txt

    [short] skip
    env GOCACHE=$WORK/cache
    
    # This test checks that cached corpus loading properly handles duplicate entries (this can
    # happen when a f.Add value has a duplicate entry in the cached corpus.) Duplicate entries
    # should be discarded, and the rest of the cache should be loaded as normal.
    
    env GOCACHE=$WORK/cache
    env GODEBUG=fuzzdebug=1
    
    mkdir -p $GOCACHE/fuzz/fuzztest/FuzzTarget
    go run ./populate $GOCACHE/fuzz/fuzztest/FuzzTarget
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/ProjectParallelExecutionController.java

         */
        void startProjectExecution(boolean parallel);
    
        /**
         * Indicate that project execution is complete.
         *
         * <p>Note: this must be called after all projects for the build tree have been discarded.</p>
         */
        void finishProjectExecution();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/SessionScoped.java

    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    /**
     * Indicates that annotated component should be instantiated before session execution starts
     * and discarded after session execution completes.
     *
     * @since 3.2.0
     */
    @Target({TYPE})
    @Retention(RUNTIME)
    @ScopeAnnotation
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/scope/MojoExecutionScoped.java

    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    /**
     * Indicates that annotated component should be instantiated before mojo execution starts and discarded after mojo
     * execution completes.
     *
     * @since 3.1.2
     */
    @Target({TYPE})
    @Retention(RUNTIME)
    @ScopeAnnotation
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

            then:
            result.assertHasPostBuildOutput("Configuration cache entry reused.")
    
            when:
            configurationCacheFails("broken")
    
            then:
            outputContains("Configuration cache entry discarded with 2 problems.")
            problems.assertFailureHasProblems(failure) {
                withProblem("Build file 'build.gradle': line 3: registration of listener on 'Gradle.addListener' is unsupported")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. api/maven-api-di/src/main/java/org/apache/maven/api/di/SessionScoped.java

    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    /**
     * Indicates that annotated component should be instantiated before session execution starts
     * and discarded after session execution completes.
     *
     * @since 4.0.0
     */
    @Scope
    @Documented
    @Retention(RUNTIME)
    @Target({TYPE, METHOD})
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top