Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 213 for skipNSs (0.12 sec)

  1. istioctl/pkg/clioptions/central.go

    	XdsPodPort int
    
    	// CertDir is the local directory containing certificates
    	CertDir string
    
    	// Timeout is how long to wait before giving up on XDS
    	Timeout time.Duration
    
    	// InsecureSkipVerify skips client verification the server's certificate chain and host name.
    	InsecureSkipVerify bool
    
    	// XDSSAN is the expected Subject Alternative Name of the XDS server
    	XDSSAN string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 03:39:27 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGFailurePolicyIntegrationTest.groovy

                testing {
                    suites {
                        test {
                            useTestNG('${version}')
                        }
                    }
                }
            """
        }
    
        def "skips tests after a config method failure by default"() {
            expect:
            fails "test"
    
            and:
            testResults.assertConfigMethodFailed("fail")
            testResults.assertTestSkipped("someTest")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Decoder.java

         *
         * @throws EOFException when the end of the byte stream is reached before the byte array was fully read.
         */
        byte[] readBinary() throws EOFException, IOException;
    
        /**
         * Skips the given number of bytes. Can skip over any byte values that were written using one of the raw byte methods on {@link Encoder}.
         */
        void skipBytes(long count) throws EOFException, IOException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. src/internal/coverage/pods/pods.go

    // with an error if something went wrong during directory/file
    // reading.
    //
    // CollectPods skips over any file that is not related to coverage
    // (e.g. avoids looking at things that are not meta-data files or
    // counter-data files). CollectPods also skips over 'orphaned' counter
    // data files (e.g. counter data files for which we can't find the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/encoding/csv/fuzz_test.go

    					record[i] = strings.ReplaceAll(s, "\r\n", "\n")
    				}
    			}
    			// Note that the reader parses the quoted record "" as an empty string,
    			// and the writer turns that into an empty line, which the reader skips over.
    			// Filter those out to avoid false positives.
    			records = slices.DeleteFunc(records, func(record []string) bool {
    				return len(record) == 1 && record[0] == ""
    			})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 01:26:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MappingProvider.java

     * Also, because the transform does not use the value content, this provider also skips checks to verify that the content has been built when the value is queried.</p>
     *
     * @see ProviderInternal for a discussion of the "value" and "value contents".
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. tests/integration/ambient/cnirepair/main_test.go

    			t.Settings().Ambient = true
    			return nil
    		}).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.EnableCNI = true
    			cfg.DeployEastWestGW = false
    			cfg.ControlPlaneValues = `
    values:
      cni:
        repair:
          enabled: true
      ztunnel:
        terminationGracePeriodSeconds: 5
        env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/internal/goroot/gc.go

    }
    
    // isStandard reports whether path is a standard library for gccgo.
    func (gd *gccgoDirs) isStandard(path string) bool {
    	// Quick check: if the first path component has a '.', it's not
    	// in the standard library. This skips most GOPATH directories.
    	i := strings.Index(path, "/")
    	if i < 0 {
    		i = len(path)
    	}
    	if strings.Contains(path[:i], ".") {
    		return false
    	}
    
    	if path == "unsafe" {
    		// Special case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/SkipEmptyIncrementalWorkStepTest.groovy

            new SkipEmptyIncrementalWorkStep(
                outputChangeListener,
                workInputListeners,
                { -> outputsCleaner },
                delegate)
        }
    
        def "skips when work has empty sources and previous outputs (#description)"() {
            def previousOutputFile = file("output.txt").createFile()
            def outputFileSnapshot = snapshot(previousOutputFile)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:24 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. pkg/test/framework/resource/matcher.go

    			return true
    		}
    	}
    	return false
    }
    
    func matchSingle(filter testFilter, testName string) bool {
    	if len(filter) == 0 {
    		// No regex defined, we default to NOT matching. This ensures our default skips nothing
    		return false
    	}
    	elem := strings.Split(testName, "/")
    	if len(filter) > len(elem) {
    		return false
    	}
    	for i, s := range elem {
    		if i >= len(filter) {
    			break
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 12 23:30:37 UTC 2021
    - 3.2K bytes
    - Viewed (0)
Back to top