Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,277 for current1_ (0.36 sec)

  1. pkg/log/default.go

    func Fatalf(format string, args ...any) {
    	defaultScope.Fatalf(format, args...)
    }
    
    // FatalEnabled returns whether output of messages using this scope is currently enabled for fatal-level output.
    func FatalEnabled() bool {
    	return defaultScope.FatalEnabled()
    }
    
    // Error outputs a message at error level.
    func Error(fields any) {
    	defaultScope.Error(fields)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/initialization/layout/BuildLayoutFactoryTest.groovy

            def currentDir = new File(new File(stopAt, "intermediate"), 'current')
            currentDir.mkdirs()
    
            expect:
            def layout = locator.getLayoutFor(currentDir, true)
            layout.rootDirectory == currentDir
            layout.settingsDir == currentDir
            layout.settingsFile == new File(currentDir, "settings.gradle") // this is the current behaviour
            layout.buildDefinitionMissing
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/os/user/lookup.go

    	groupFile = "/etc/group"
    )
    
    var colon = []byte{':'}
    
    // Current returns the current user.
    //
    // The first call will cache the current user information.
    // Subsequent calls will return the cached value and will not reflect
    // changes to the current user.
    func Current() (*User, error) {
    	cache.Do(func() { cache.u, cache.err = current() })
    	if cache.err != nil {
    		return nil, cache.err
    	}
    	u := *cache.u // copy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. pkg/proxy/servicechangetracker.go

    		sct.items[namespacedName] = change
    	}
    	change.current = sct.serviceToServiceMap(current)
    	// if change.previous equal to change.current, it means no change
    	if reflect.DeepEqual(change.previous, change.current) {
    		delete(sct.items, namespacedName)
    	} else {
    		klog.V(4).InfoS("Service updated ports", "service", klog.KObj(svc), "portCount", len(change.current))
    	}
    	metrics.ServiceChangesPending.Set(float64(len(sct.items)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinapplication/multi/list/LinkedList.kt.template

                previousIt = it
                it = it.next
            }
    
            return result
        }
    
        private fun unlink(previousIt: Node?, currentIt: Node) {
            if (currentIt == head) {
                head = currentIt.next
            } else {
                previousIt?.next = currentIt.next
            }
        }
    
        fun size(): Int {
            var size = 0
    
            var it = head
            while (it != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. build-logic/buildquality/src/main/kotlin/gradlebuild.verify-build-environment.gradle.kts

    tasks.register("verifyIsProductionBuildEnvironment") {
        doLast {
            val systemCharset = Charset.defaultCharset().name()
            assert(systemCharset == "UTF-8") {
                "Platform encoding must be UTF-8. Is currently $systemCharset. Set -Dfile.encoding=UTF-8"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 01 09:48:30 UTC 2021
    - 941 bytes
    - Viewed (0)
  7. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesMultiTargetIntegrationTest.groovy

                        }
                    }
                }
            """
    
            when:
            withInstallations(Jvm.current(), otherJvm).succeeds("check")
    
            then:
            result.assertTaskExecuted(":test")
            result.assertTaskExecuted(":testOtherJdk")
        }
    
        // currently not supported, namespacing issues
        def "targets in two different test suites may not share names"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/OutputFileChanges.java

        private final SortedMap<String, FileSystemSnapshot> current;
    
        public OutputFileChanges(SortedMap<String, FileSystemSnapshot> previous, SortedMap<String, FileSystemSnapshot> current) {
            this.previous = previous;
            this.current = current;
        }
    
        @Override
        public boolean accept(ChangeVisitor visitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KaLifetimeTracker.kt

    /**
     * [KaLifetimeTracker] is an *engine service* which tracks the current [KtLifetimeToken].
     *
     * It can be used in the implementation of custom lifetime tokens to check that the accessed token is in scope.
     */
    public interface KaLifetimeTracker : KaEngineService {
        /**
         * Returns the [KtLifetimeToken] for the currently active analysis, or `null` if no analysis is in progress.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. build.gradle.kts

        id("gradlebuild.teamcity-import-test-data")  // CI: Import Test tasks' JUnit XML if they're UP-TO-DATE or FROM-CACHE
        id("gradlebuild.lifecycle")                  // CI: Add lifecycle tasks to for the CI pipeline (currently needs to be applied early as it might modify global properties)
        id("gradlebuild.generate-subprojects-info")  // CI: Generate subprojects information for the CI testing pipeline fan out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 11:54:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top