Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 172 for excluded (0.71 sec)

  1. src/cmd/dist/test.go

    			errprintf("go tool dist: warning: %q matched no tests; use the -list flag to list available tests\n", t.runRxStr)
    			fmt.Println("NO TESTS TO RUN")
    		} else if someExcluded {
    			fmt.Println("\nALL TESTS PASSED (some were excluded)")
    		} else {
    			fmt.Println("\nALL TESTS PASSED")
    		}
    	}
    	if t.failed {
    		xexit(1)
    	}
    }
    
    func (t *tester) shouldRunTest(name string) bool {
    	if t.runRx != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_test.go

    		vers:   VersionTLS11,
    		random: make([]byte, 32),
    		cipherSuites: []uint16{
    			// The Server, by default, will use the client's
    			// preference order. So the GCM cipher suite
    			// will be selected unless it's excluded because
    			// of the version in this ClientHello.
    			TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
    			TLS_RSA_WITH_RC4_128_SHA,
    		},
    		compressionMethods: []uint8{compressionNone},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

       * are thus excluded from consideration. Since it refers to elements in UNDER of the same type,
       * the type is actually not important here. The map is simply used for consistency reasons.
       */
      public static final ImmutableMap<String, PublicSuffixType> EXCLUDED =
          TrieParser.parseTrie(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

       * are thus excluded from consideration. Since it refers to elements in UNDER of the same type,
       * the type is actually not important here. The map is simply used for consistency reasons.
       */
      public static final ImmutableMap<String, PublicSuffixType> EXCLUDED =
          TrieParser.parseTrie(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (1)
  5. src/runtime/mprof.go

    	goroutineProfile.labels = labels
    	// The finalizer goroutine needs special handling because it can vary over
    	// time between being a user goroutine (eligible for this profile) and a
    	// system goroutine (to be excluded). Pick one before restarting the world.
    	if fing != nil {
    		fing.goroutineProfiled.Store(goroutineProfileSatisfied)
    		if readgstatus(fing) != _Gdead && !isSystemGoroutine(fing, false) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    // All other types (including string, slice, and interface types) count as one element.
    // If countBlank is IgnoreBlankFields, then blank struct fields
    // (and their comprised elements) are excluded from the count.
    // struct { x, y [3]int } has six components; [10]struct{ x, y string } has twenty.
    func (t *Type) NumComponents(countBlank componentsIncludeBlankFields) int64 {
    	switch t.kind {
    	case TSTRUCT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    		// - part 2: multiPointEnabled - i.e., plugin defined in multipoint but not in regular extension point.
    		// - part 3: other plugins (excluded by part 1 & 2) in regular extension point.
    		newPlugins := reflect.New(reflect.TypeOf(e.slicePtr).Elem()).Elem()
    		// part 1
    		for _, name := range slice.CopyStrings(enabledSet.list) {
    			if overridePlugins.has(name) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    				include := c.Include
    				if include == nil {
    					include = func(_ echo.Instance, _ echo.CallOptions) bool { return true }
    				}
    				if !include(src, opt) {
    					t.Skip("excluded")
    				}
    				src.CallOrFail(t, opt)
    			})
    		})
    	}
    }
    
    func TestIngress(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    				proxier.logger.Error(err, "Failed to delete service", "virtualServer", svc)
    			}
    		}
    	}
    }
    
    func (proxier *Proxier) isIPInExcludeCIDRs(ip net.IP) bool {
    	// make sure it does not fall within an excluded CIDR range.
    	for _, excludedCIDR := range proxier.excludeCIDRs {
    		if excludedCIDR.Contains(ip) {
    			return true
    		}
    	}
    	return false
    }
    
    func getIPFamily(ip net.IP) v1.IPFamily {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    			return err
    		}
    
    		_, err = io.Copy(dst, src)
    		if closeErr := dst.Close(); err == nil {
    			err = closeErr
    		}
    		return err
    	})
    }
    
    // The following sets of files are excluded from testing depending on configuration.
    // The types2Failures(32Bit) files pass with the 1.17 compiler but don't pass with
    // the 1.18 compiler using the new types2 type checker, or pass with sub-optimal
    // error(s).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top