Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,026 for excluded (0.23 sec)

  1. pkg/proxy/ipvs/netlink_linux.go

    	}
    	return ips, nil
    }
    
    // GetAllLocalAddresses return all local addresses on the node.
    // Only the addresses of the current family are returned.
    // IPv6 link-local and loopback addresses are excluded.
    func (h *netlinkHandle) GetAllLocalAddresses() (sets.Set[string], error) {
    	addr, err := net.InterfaceAddrs()
    	if err != nil {
    		return nil, fmt.Errorf("Could not get addresses: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 30 16:18:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. test/abi/double_nested_addressed_struct.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"
    )
    
    var sink *string
    
    type stringPair struct {
    	a, b string
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. test/abi/uglyfib.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"
    
    // This test is designed to provoke a stack growth
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. build-logic/cleanup/src/main/kotlin/gradlebuild/testing/services/BuildBucketProvider.kt

                println("Tests to be included:\n$content")
                IncludeTestClassProvider(readTestClasses(content))
            }
            parameters.excludeTestClasses.get().isNotBlank() -> {
                val content = parameters.repoRoot.file("test-splits/exclude-test-classes.properties").get().asFile.readText()
                println("Tests to be excluded:\n$content")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 08 06:28:57 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. test/abi/named_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"
    )
    
    var sink *string
    
    var y int
    
    //go:registerparams
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/base/path.go

    		if err == nil && len(rel) < len(p) {
    			p = rel
    		}
    		out = append(out, p)
    	}
    	return out
    }
    
    // IsTestFile reports whether the source file is a set of tests and should therefore
    // be excluded from coverage analysis.
    func IsTestFile(file string) bool {
    	// We don't cover tests, only the code they test.
    	return strings.HasSuffix(file, "_test.go")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 19:17:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4LoggingOutputCaptureIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            executer.withTestConsoleAttached()
            succeeds("test")
    
            and: "all output is included/excluded in the xml report as configured"
            def junitResult = new JUnitXmlTestExecutionResult(testDirectory)
            if (standardOutIncluded) {
                assert junitResult.getSuiteStandardOutput("OkTest").isPresent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/JUnitVintageLoggingOutputCaptureIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            executer.withTestConsoleAttached()
            succeeds("test")
    
            and: "all output is included/excluded in the xml report as configured"
            def junitResult = new JUnitXmlTestExecutionResult(testDirectory)
            if (standardOutIncluded) {
                assert junitResult.getSuiteStandardOutput("OkTest").isPresent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. cmd/dependencycheck/dependencycheck.go

    	if err != nil {
    		log.Fatalf("Error compiling restricted dependencies regex: %v", err)
    	}
    	var excludePattern *regexp.Regexp
    	if *exclude != "" {
    		excludePattern, err = regexp.Compile(*exclude)
    		if err != nil {
    			log.Fatalf("Error compiling excluded package regex: %v", err)
    		}
    	}
    	b, err := os.ReadFile(args[0])
    	if err != nil {
    		log.Fatalf("Error reading dependencies file: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 3K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/ApiClassExtractor.java

         * specification, then package-private classes are included in the public API. If the
         * list of exported packages is non-empty (i.e. the library has declared an
         * {@code api {...}} specification, then package-private classes are excluded.</p>
         */
        public Optional<byte[]> extractApiClassFrom(ClassReader originalClassReader) {
            if (!shouldExtractApiClassFrom(originalClassReader)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top