Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,538 for excluded (0.21 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProcessResourcesIntegrationTest.groovy

        @Issue('https://github.com/gradle/gradle/issues/16423')
        def 'java source files are excluded by default'() {
            given:
            buildFile '''
                plugins {
                    id 'java'
                }
                sourceSets {
                    main.resources.srcDir 'src/main/java'
                    main.resources.exclude '**/*.kt' // Forces an intersection pattern set to be created behind the scenes
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. test/abi/f_ret_z_not.go

    // run
    
    //go:build !wasm
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    import "fmt"
    
    type Z struct {
    }
    
    type NZ struct {
    	x, y int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 616 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/IgnoredConfigurationInputs.kt

    import java.io.File
    
    
    /**
     * Defines specific configuration inputs that should not be included in the configuration cache fingerprint.
     */
    @ServiceScope(Scope.BuildTree::class)
    interface IgnoredConfigurationInputs {
        /**
         * Checks if the [file] should be excluded from the configuration inputs fingerprint if it participates
         * in file system checks, such as [File.exists], [File.isFile] etc.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. test/abi/return_stuff.go

    // run
    
    //go:build !wasm
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    import (
    	"fmt"
    )
    
    //go:registerparams
    //go:noinline
    func F(a, b, c *int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 700 bytes
    - Viewed (0)
  5. src/go/types/stdlib_test.go

    			}
    		}
    		t.Fatal(err)
    	}
    
    	excluded := make(map[string]bool)
    	for _, filename := range ignore {
    		excluded[filename] = true
    	}
    
    	fset := token.NewFileSet()
    	for _, f := range files {
    		// filter directory contents
    		if f.IsDir() || !strings.HasSuffix(f.Name(), ".go") || excluded[f.Name()] {
    			continue
    		}
    
    		// get per-file instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/AbstractCppUnitTestComponentIntegrationTest.groovy

    import org.gradle.language.cpp.AbstractCppComponentIntegrationTest
    
    abstract class AbstractCppUnitTestComponentIntegrationTest extends AbstractCppComponentIntegrationTest {
        def "check task warns when current operating system family is excluded"() {
            given:
            makeSingleProject()
            componentUnderTest.writeToProject(testDirectory)
    
            and:
            buildFile << configureTargetMachines("machines.os('some-other-family')")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/cmd/root.go

    		"Comma separated list of IP ranges in CIDR form to be excluded from redirection. "+
    			"Only applies when all  outbound traffic (i.e. \"*\") is being redirected.",
    		&cfg.OutboundIPRangesExclude)
    
    	flag.BindEnv(fs, constants.OutboundPorts, "q",
    		"Comma separated list of outbound ports to be explicitly included for redirection to Envoy.",
    		&cfg.OutboundPortsInclude)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftComponentIntegrationTest.groovy

            then:
            result.assertTasksExecuted(tasksToAssembleDevelopmentBinaryOfComponentUnderTest, ":$taskNameToAssembleDevelopmentBinary")
        }
    
        def "assemble task warns when current operating system family is excluded"() {
            given:
            makeSingleProject()
            componentUnderTest.writeToProject(testDirectory)
    
            and:
            buildFile << configureTargetMachines("machines.os('some-other-family')")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_en.properties

    labels.createdTime=Created Time
    labels.depth=Depth
    labels.excludedPaths=Excluded Paths For Crawling
    labels.excludedUrls=Excluded URLs For Crawling
    labels.excludedDocPaths=Excluded Paths For Indexing
    labels.excludedDocUrls=Excluded URLs For Indexing
    labels.hostname=Hostname
    labels.id=ID
    labels.includedPaths=Included Paths For Crawling
    labels.includedUrls=Included URLs For Crawling
    labels.includedDocPaths=Included Paths For Indexing
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  10. test/abi/many_int_input.go

    // run
    
    //go:build !wasm
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    import (
    	"fmt"
    )
    
    //go:registerparams
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 908 bytes
    - Viewed (0)
Back to top