Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,879 for forSet (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/GradleDependencyMetadata.java

        private final String reason;
        private final boolean force;
        private final List<IvyArtifactName> artifacts;
    
        public GradleDependencyMetadata(ModuleComponentSelector selector, List<ExcludeMetadata> excludes, boolean constraint, boolean endorsing, @Nullable String reason, boolean force, @Nullable IvyArtifactName artifact) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue12006.go

    // Test escape analysis through ... parameters.
    
    package foo
    
    func FooN(vals ...*int) (s int) { // ERROR "vals does not escape"
    	for _, v := range vals {
    		s += *v
    	}
    	return s
    }
    
    // Append forces heap allocation and copies entries in vals to heap, therefore they escape to heap.
    func FooNx(x *int, vals ...*int) (s int) { // ERROR "leaking param: x" "leaking param content: vals"
    	vals = append(vals, x)
    	return FooN(vals...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            assertEquals("0 kB", format.format(_0_bytes, ScaleUnit.KILOBYTE));
            assertEquals("0 MB", format.format(_0_bytes, ScaleUnit.MEGABYTE));
            assertEquals("0 GB", format.format(_0_bytes, ScaleUnit.GIGABYTE));
    
            long _5_bytes = 5L;
            assertEquals("5 B", format.format(_5_bytes));
            assertEquals("5 B", format.format(_5_bytes, ScaleUnit.BYTE));
            assertEquals("0 kB", format.format(_5_bytes, ScaleUnit.KILOBYTE));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                                return DaemonStopState.Forced;
                        }
                    } catch (InterruptedException e) {
                        throw UncheckedException.throwAsUncheckedException(e);
                    }
                }
                LOGGER.debug("Cancel: daemon is still busy after grace period. Will force stop.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    =====
    [source, groovy]
    ----
    plugins {
        // Apply the application plugin to add support for building a CLI application in Java.
        id 'application'
        id 'maven-publish'
    }
    ----
    =====
    
    Don't forget to sync Gradle if you are using IntelliJ IDEA.
    
    Let's make sure the plugin has been applied by looking at the new tasks that are available.
    
    Run `./gradlew :app:tasks` in your command line:
    
    [source,text]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/rate_limiters.go

    }
    
    // NumRequeues returns back how many failures the item has had
    func (r *FixedItemIntervalRateLimiter) NumRequeues(item string) int {
    	return 1
    }
    
    // Forget indicates that an item is finished being retried.
    func (r *FixedItemIntervalRateLimiter) Forget(item string) {
    }
    
    // NewDefaultHPARateLimiter creates a rate limiter which limits overall (as per the
    // default controller rate limiter), as well as per the resync interval
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller.go

    func (c *RequestHeaderAuthRequestController) processNextWorkItem() bool {
    	dsKey, quit := c.queue.Get()
    	if quit {
    		return false
    	}
    	defer c.queue.Done(dsKey)
    
    	err := c.sync()
    	if err == nil {
    		c.queue.Forget(dsKey)
    		return true
    	}
    
    	utilruntime.HandleError(fmt.Errorf("%v failed with : %v", dsKey, err))
    	c.queue.AddRateLimited(dsKey)
    
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jStdoutLogger.java

        public void info(Marker marker, String msg, Throwable t) {}
    
        public boolean isWarnEnabled() {
            return false;
        }
    
        public void warn(String msg) {}
    
        public void warn(String format, Object arg) {}
    
        public void warn(String format, Object... arguments) {}
    
        public void warn(String format, Object arg1, Object arg2) {}
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/templates/root-project/pom.xml

                                    println "BEFORE GC"
                                    println "heap: \${format(heap.used)} (initial \${format(heap.init)}, committed \${format(heap.committed)}, max \${format(heap.max)}"
                                    println "nonHeap: \${format(nonHeap.used)} (initial \${format(nonHeap.init)}, committed \${format(nonHeap.committed)}, max \${format(nonHeap.max)}"
    
                                    ManagementFactory.memoryMXBean.gc()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/sync/map_bench_test.go

    			}
    		},
    	})
    }
    
    // BenchmarkAdversarialAlloc tests performance when we store a new value
    // immediately whenever the map is promoted to clean and otherwise load a
    // unique, missing key.
    //
    // This forces the Load calls to always acquire the map's mutex.
    func BenchmarkAdversarialAlloc(b *testing.B) {
    	benchMap(b, bench{
    		perG: func(b *testing.B, pb *testing.PB, i int, m mapInterface) {
    			var stores, loadsSinceStore int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top