Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 574 for logic (0.17 sec)

  1. src/cmd/go/testdata/script/list_replace_absolute_windows.txt

    # Test a replacement with an absolute path (so the path isn't
    # cleaned by having filepath.Abs called on it). This checks
    # whether the modindex logic cleans the modroot path before using
    # it.
    
    [!GOOS:windows] skip
    [short] skip
    
    go run print_go_mod.go # use this program to write a go.mod with an absolute path
    cp stdout go.mod
    
    go list -modfile=go.mod all
    -- print_go_mod.go --
    //go:build ignore
    package main
    
    import (
        "fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 693 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/services/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * A package that contains services for transforms for build logic classpath.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 16:53:26 UTC 2024
    - 797 bytes
    - Viewed (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

            get() = "TEAMCITY_PARALLEL_TESTS_ENABLED" in System.getenv()
        val isCodeQl: Boolean by lazy {
            // This logic is kept here instead of `codeql-analysis.init.gradle` because that file will hopefully be removed in the future.
            // Removing that file is waiting on the GitHub team fixing an issue in Autobuilder logic.
            CODEQL_ENVIRONMENT_VARIABLES.any { it in System.getenv() }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/DefaultExcludesFixture.groovy

            @Override
            void applyDefaultExcludes(AbstractIntegrationSpec spec, ScriptLanguage scriptLanguage) {
                TestFile includedBuildDir = spec.testDirectory.file("build-logic")
                settingsFile(spec.testDirectory, scriptLanguage) << 'includeBuild("build-logic")'
                settingsFile(includedBuildDir, scriptLanguage) << addDefaultExclude(excludedFileName())
            }
    
            @Override
            String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/name_table.go

    	dnsProto "istio.io/istio/pkg/dns/proto"
    	dnsServer "istio.io/istio/pkg/dns/server"
    )
    
    // BuildNameTable produces a table of hostnames and their associated IPs that can then
    // be used by the agent to resolve DNS. This logic is always active. However, local DNS resolution
    // will only be effective if DNS capture is enabled in the proxy
    func (configgen *ConfigGeneratorImpl) BuildNameTable(node *model.Proxy, push *model.PushContext) *dnsProto.NameTable {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/kotlin/build.gradle.kts

            }
        }
    }
    
    data class DefaultVersion(val version: String, val because: String)
    
    fun findDefaultVersionInCatalog(group: String, name: String): DefaultVersion {
        //some custom logic that resolves the default version into a specific version
        return DefaultVersion(version = "1.0", because = "tested by QA")
    }
    // end::custom-versioning-scheme[]
    
    // tag::denying_version[]
    configurations.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/path/filepath/path_plan9.go

    	}
    	return strings.Split(path, string(ListSeparator))
    }
    
    func abs(path string) (string, error) {
    	return unixAbs(path)
    }
    
    func join(elem []string) string {
    	// If there's a bug here, fix the logic in ./path_unix.go too.
    	for i, e := range elem {
    		if e != "" {
    			return Clean(strings.Join(elem[i:], string(Separator)))
    		}
    	}
    	return ""
    }
    
    func sameWord(a, b string) bool {
    	return a == b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 926 bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // priorityLevelConfigurationStrategy implements verification logic for priority level configurations.
    type priorityLevelConfigurationStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating priority level configuration objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions/interface.go

    	"k8s.io/apiserver/pkg/authorization/authorizer"
    )
    
    type MatchResult struct {
    	Matches             bool
    	Error               error
    	FailedConditionName string
    }
    
    // Matcher contains logic for converting Evaluations to bool of matches or does not match
    type Matcher interface {
    	// Match is used to take cel evaluations and convert into decisions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 28 19:30:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    After startup, Gradle initializes your project. Usually, Gradle only processes your settings file.
    If you have custom build logic in a `buildSrc` directory, Gradle also processes that logic.
    After building `buildSrc` once, Gradle considers it up to date. The up-to-date checks take significantly less time than logic processing.
    If your `buildSrc` phase takes too much time, consider breaking it out into a separate project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top