Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 123 for someString (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            def someTask = ":someTask"
            def someTaskOutput = file("build/overlap/someTask.txt")
            someTaskOutput.text = "Created by something else"
    
            when:
            withBuildCache().run(someTask)
            then:
            // someTask cannot be cached because its outputs were created by something else
            assertTaskOutputNotCached(someTask)
            someTaskOutput.text == "Generated by ${someTask}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell.go

    	// Rewrite mentions of dir with a relative path to dir
    	// when the relative path is shorter.
    	for {
    		// Note that dir starts out long, something like
    		// /foo/bar/baz/root/a
    		// The target string to be reduced is something like
    		// (blah-blah-blah) /foo/bar/baz/root/sibling/whatever.go:blah:blah
    		// /foo/bar/baz/root/a doesn't match /foo/bar/baz/root/sibling, but the prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

                return Value.of(ImmutableSet.of());
            }
    
            @Override
            public MapSupplier<K, V> plus(MapCollector<K, V> collector) {
                // empty + something = something
                return new CollectingSupplier(collector);
            }
    
            @Override
            public ExecutionTimeValue<? extends Map<K, V>> calculateExecutionTimeValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. pkg/spiffe/spiffe_test.go

    		}
    	}
    }
    
    func TestMustGenSpiffeURI(t *testing.T) {
    	mesh := &meshconfig.MeshConfig{TrustDomain: "something.local"}
    	if nonsense := MustGenSpiffeURI(mesh, "", ""); nonsense != "spiffe://something.local/ns//sa/" {
    		t.Errorf("Unexpected spiffe URI for empty namespace and service account: %s", nonsense)
    	}
    }
    
    type handler struct {
    	statusCode int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	// If a rollback is needed, these manifests will be put back to where they where initially
    	backupManifestPath := pathMgr.BackupManifestPath(component)
    
    	// Store the backup path in the recover list. If something goes wrong now, this component will be rolled back.
    	recoverManifests[component] = backupManifestPath
    
    	// Skip upgrade if current and new manifests are equal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            distDir.createDir("lib")
            distDir.createDir("lib/plugins")
            distDir.createDir("lib/plugins/sonar")
            externalRuntimeDep = dependencyCache.file("com.something/3.4.5/b4b02fa623c5a618e68478d9a4a67e1e87c023c6/dep-1.2.jar")
            distDir.zipTo(externalRuntimeDep)
            runtimeDep = distDir.createZip("lib/dep-1.2.jar")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testplugin/plugin_test.go

    	if op != "tool" {
    		flags = []string{"-gcflags", gcflags}
    	}
    	return run(t, filepath.Join(goroot, "bin", "go"), append(append([]string{op}, flags...), args...)...)
    }
    
    // escape converts a string to something suitable for a shell command line.
    func escape(s string) string {
    	s = strings.Replace(s, "\\", "\\\\", -1)
    	s = strings.Replace(s, "'", "\\'", -1)
    	// Conservative guess at characters that will force quoting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                result = connection.receive();
            } catch (StaleDaemonAddressException e) {
                LOGGER.debug("Connected to a stale daemon address.", e);
                // We might fail hard here on the assumption that something weird happened to the daemon.
                // However, since we haven't yet started running the build, we can recover by just trying again.
                throw new DaemonInitialConnectException("Connected to a stale daemon address.", e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ConventionAwareHelper.java

            }
    
            if (_ineligiblePropertyNames.contains(propertyName)) {
                // When there's a convention-supporting object, use its `.convention()` method instead
                // This is something we added to support properties migrated in the future from
                // Java bean to Property where old code uses ConventionMapping to set conventions.
                Class<? extends IConventionAware> sourceType = _source.getClass();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. tests/preload_test.go

    	if err := DB.Create(&user).Error; err != nil {
    		t.Fatalf("errors happened when create: %v", err)
    	}
    
    	var result struct {
    		Something string
    		User
    	}
    
    	DB.Model(User{}).Preload("Account", clause.Eq{Column: "number", Value: user.Account.Number}).Select(
    		"users.*, 'yo' as something").First(&result, "name = ?", user.Name)
    
    	CheckUser(t, user, result.User)
    }
    
    func TestNestedPreloadWithUnscoped(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top