Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 366 for differs (0.11 sec)

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

    - d1.jar:
    \t- file differs (relative to root project 'projectText'): (expected) ${pathLiteral("build/libs/projectText-1.0.jar")} != (actual) d1.jar
    - a2.txt:
    \t- file differs (relative to root project 'projectText'): (expected) ${pathLiteral("build/libs/projectText-1.0.jar")} != (actual) a2.txt
    \t- extension differs: (expected) jar != (actual) txt
    - b3.txt:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    			equal: true,
    		},
    		{
    			name:  "objects are not equal if contents differs",
    			lhs:   UnstructuredToVal(map[string]interface{}{"field1": "a", "field2": "b"}, &objectSchema),
    			rhs:   UnstructuredToVal(map[string]interface{}{"field1": "a", "field2": "c"}, &objectSchema),
    			equal: false,
    		},
    		{
    			name:  "objects are not equal if length differs",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go

    			t.Errorf("json differs")
    			t.Log(cmp.Diff(string(actualJSON), string(expectedJSON)))
    			needsUpdate = true
    		}
    
    		if !bytes.Equal(expectedYAML, actualYAML) {
    			t.Errorf("yaml differs")
    			t.Log(cmp.Diff(string(actualYAML), string(expectedYAML)))
    			needsUpdate = true
    		}
    
    		if !bytes.Equal(expectedProto, actualProto) {
    			t.Errorf("proto differs")
    			needsUpdate = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 16:38:32 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/openapi/values_test.go

    			equal: true,
    		},
    		{
    			name:  "objects are not equal if contents differs",
    			lhs:   UnstructuredToVal(map[string]interface{}{"field1": "a", "field2": "b"}, objectSchema),
    			rhs:   UnstructuredToVal(map[string]interface{}{"field1": "a", "field2": "c"}, objectSchema),
    			equal: false,
    		},
    		{
    			name:  "objects are not equal if length differs",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

            then:
            ipr.bytecodeTargetLevel.size() == 1
            ipr.bytecodeTargetLevel.@target == "1.6"
        }
    
        @ToBeFixedForConfigurationCache
        def "explicit project target level when module version differs from project java sdk"() {
            given:
            createDirs("subprojectA", "subprojectB", "subprojectC")
            settingsFile << """
    rootProject.name = "root"
    include 'subprojectA'
    include 'subprojectB'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/AlreadyOnClasspathPluginUseIntegrationTest.groovy

            operations.hasOperation("Apply plugin my-plugin to project ':a'")
        }
    
        def "cannot request plugin version of plugin already requested on parent project if the version differs"() {
    
            given:
            withBinaryPluginPublishedLocally()
    
            and:
            createDirs("a")
            withSettings """
    
                pluginManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. pkg/kube/adapter.go

    	SubResource string `json:"subResource,omitempty"`
    	// RequestKind is the fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale).
    	// If this is specified and differs from the value in "kind", an equivalent match and conversion was performed.
    	//
    	// For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

            expect:
            builder.build() == ["-source", JavaVersion.current().toString()] + defaultOptions
        }
    
        def "generates -source option when compatibility differs from current Jvm version"() {
            spec.sourceCompatibility = "1.6"
    
            expect:
            builder.build() == ["-source", "1.6"] + defaultOptions
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    		}
    	}
    	if len(expectedList) == 0 {
    		t.Errorf("%s: empty expectedList", msg)
    		return
    	}
    	if diff := cmp.Diff(expectedList[0], got); diff != "" {
    		t.Errorf("%s: differs from all items, with first: %s", msg, diff)
    	} else {
    		t.Errorf("%s: differs from all items, first: %#v\ngot: %#v", msg, expectedList[0], got)
    	}
    }
    
    const dummyPrefix = "adapter"
    
    func encodeContinueOrDie(key string, resourceVersion int64) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

            then:
            cache1 == cache2
    
            cleanup:
            access?.close()
        }
    
        def "throws InvalidCacheReuseException when cache value type differs"() {
            def access = newAccess(OnDemand)
    
            when:
            access.newCache(IndexedCacheParameters.of('cache', String.class, Integer.class))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top