Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for IsSame (0.23 sec)

  1. .teamcity/src/main/kotlin/common/Os.kt

     */
    
    package common
    
    enum class Arch(val suffix: String, val nameOnLinuxWindows: String, val nameOnMac: String) {
        AMD64("64bit", "amd64", "x86_64"),
        AARCH64("aarch64", "aarch64", "aarch64");
    
        fun asName() = name.lowercase().toCapitalized()
    }
    
    enum class Os(
        val agentRequirement: String,
        val androidHome: String,
        val jprofilerHome: String,
        val perfTestWorkingDir: String = "%teamcity.build.checkoutDir%",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivatorTest.java

            Profile p = Profile.newBuilder().activation(a).build();
    
            return p;
        }
    
        private Properties newProperties(String osName, String osVersion, String osArch) {
            Properties props = new Properties();
            props.setProperty("os.name", osName);
            props.setProperty("os.version", osVersion);
            props.setProperty("os.arch", osArch);
            return props;
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 05 14:16:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status.go

    		if podCIDRChanged, err = kl.updatePodCIDR(ctx, podCIDRs); err != nil {
    			klog.ErrorS(err, "Error updating pod CIDR")
    		}
    	}
    
    	areRequiredLabelsNotPresent := false
    	osName, osLabelExists := node.Labels[v1.LabelOSStable]
    	if !osLabelExists || osName != goruntime.GOOS {
    		if len(node.Labels) == 0 {
    			node.Labels = make(map[string]string)
    		}
    		node.Labels[v1.LabelOSStable] = goruntime.GOOS
    		areRequiredLabelsNotPresent = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. src/sync/pool.go

    // A Pool must not be copied after first use.
    //
    // In the terminology of [the Go memory model], a call to Put(x) “synchronizes before”
    // a call to [Pool.Get] returning that same value x.
    // Similarly, a call to New returning x “synchronizes before”
    // a call to Get returning that same value x.
    //
    // [the Go memory model]: https://go.dev/ref/mem
    type Pool struct {
    	noCopy noCopy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/build/relnote/links.go

    	i := strings.LastIndex(text, ".")
    	name = text[i+1:]
    	if !isName(name) {
    		return text, "", false
    	}
    	if i >= 0 {
    		before = text[:i]
    	}
    	return before, name, true
    }
    
    // isName reports whether s is a capitalized Go identifier (like Name).
    func isName(s string) bool {
    	t, ok := ident(s)
    	if !ok || t != s {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/gateway.go

    // MergeGateways combines multiple gateways targeting the same workload into a single logical Gateway.
    // Note that today any Servers in the combined gateways listening on the same port must have the same protocol.
    // If servers with different protocols attempt to listen on the same port, one of the protocols will be chosen at random.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            val firCall = ktCallExpression.getOrBuildFir(analysisSession.firResolveSession)?.unwrapSafeCall() as? FirCall ?: return emptyList()
            val parameter = firCall.findCorrespondingParameter(ktValueArgumentName.asName) ?: return emptyList()
            return listOfNotNull(parameter.buildSymbol(symbolBuilder))
        }
    
        private fun FirCall.findCorrespondingParameter(name: Name): FirValueParameter? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  8. pkg/controller/job/backoff_utils_test.go

    			backoffRecord: backoffRecord{
    				lastFailureTime:          &defaultTestTime.Time,
    				failuresAfterLastSuccess: 3,
    			},
    			currentTime:    defaultTestTime.Time,
    			defaultBackoff: 5 * time.Second,
    			maxBackoff:     700 * time.Second,
    			wantDuration:   20 * time.Second,
    		},
    		"eight failures; current time and failure time are same; backoff not exceeding maxBackoff": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

    import spock.lang.Specification
    
    class PersistentListTest extends Specification {
    
        def "empty lists are the same"() {
            expect:
            PersistentList.of() == PersistentList.of()
        }
    
        def "lists with elements #elements are the same"() {
            expect:
            listOf(elements) == listOf(elements)
    
            where:
            elements << [["a"], ["a", "b"]]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * in the dependencies of a given configuration.
         * For example, some other dependency, which does not have any exclude rules,
         * might pull in exactly the same transitive dependency.
         * To guarantee that the transitive dependency is excluded from the entire configuration
         * please use per-configuration exclude rules: {@link Configuration#getExcludeRules()}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top