Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 297 for continueCh (0.43 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	ldr := ctxt.loader
    	for s, nsym := loader.Sym(1), loader.Sym(ldr.NSym()); s < nsym; s++ {
    		if !ldr.AttrCgoExport(s) {
    			continue
    		}
    		extname := ldr.SymExtname(s)
    		if !strings.HasPrefix(extname, "._cgoexp_") {
    			continue
    		}
    		if ldr.IsFileLocal(s) {
    			continue // Only export non-static symbols
    		}
    
    		// Retrieve the name of the initial symbol
    		// exported by cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        for (int pred : cycles_graph_.Predecessors(current_rpo_node)) {
          if (!best_pred_for_node.contains(pred)) {
            continue;
          }
    
          // Ignore the from->to edge since we're trying to find an alternate path.
          if (current_rpo_node == to && pred == from) {
            continue;
          }
    
          some_pred = pred;
          if (GetClusterForCyclesGraphNode(pred) == nullptr) {
            preferred_pred = pred;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    			// store by the kubelet or the Pod GC. The DS controller doesn't have
    			// anything else to do with it.
    			continue
    		}
    		nodeName, err := util.GetTargetNodeName(pod)
    		if err != nil {
    			logger.V(4).Info("Failed to get target node name of Pod in DaemonSet",
    				"pod", klog.KObj(pod), "daemonset", klog.KObj(ds))
    			continue
    		}
    
    		nodeToDaemonPods[nodeName] = append(nodeToDaemonPods[nodeName], pod)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    		res := sets.NewWithLength[string](len(cidrs))
    		for _, s := range cidrs {
    			prefix, err := util.AddrStrToPrefix(s)
    			if err != nil {
    				continue
    			}
    			if prefix.Addr().String() == constants.UnspecifiedIP {
    				continue
    			}
    
    			if s == "*" {
    				continue
    			}
    			res.Insert(prefix.Masked().String())
    		}
    		return res
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/math/big/int_test.go

    		if !ok {
    			t.Errorf("SetString(%s, 0) failed", s)
    			continue
    		}
    
    		want, err := strconv.ParseInt(s, 0, 64)
    		if err != nil {
    			if err.(*strconv.NumError).Err == strconv.ErrRange {
    				if x.IsInt64() {
    					t.Errorf("IsInt64(%s) succeeded unexpectedly", s)
    				}
    			} else {
    				t.Errorf("ParseInt(%s) failed", s)
    			}
    			continue
    		}
    
    		if !x.IsInt64() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    						continue
    					}
    					key, _ := kv.Key.(*ast.Ident)
    					// do all possible checks early (before exiting due to errors)
    					// so we don't drop information on the floor
    					check.expr(nil, x, kv.Value)
    					if key == nil {
    						check.errorf(kv, InvalidLitField, "invalid field name %s in struct literal", kv.Key)
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		if err != nil {
    			return nil, err
    		}
    		if foundDirectiveMarker {
    			continue
    		}
    
    		if reflect.TypeOf(originalValue) != reflect.TypeOf(modifiedValue) {
    			// Types have changed, so add to patch
    			if !diffOptions.IgnoreChangesAndAdditions {
    				patch[key] = modifiedValue
    			}
    			continue
    		}
    
    		// Types are the same, so compare values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    			x = append(v, 'z')
    		}
    
    		result := sliceOfString(a)
    		if !eq(result, tt.a) {
    			t.Errorf(`Split(%q, %q, %d) = %v; want %v`, tt.s, tt.sep, tt.n, result, tt.a)
    			continue
    		}
    		if tt.n == 0 || len(a) == 0 {
    			continue
    		}
    
    		if want := tt.a[len(tt.a)-1] + "z"; string(x) != want {
    			t.Errorf("last appended result was %s; want %s", x, want)
    		}
    
    		s := Join(a, []byte(tt.sep))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    			var secretKey string
    			secretKey, err = getTokenSigningKey()
    			if err != nil {
    				continue
    			}
    			claims, err = getClaimsFromTokenWithSecret(cred.SessionToken, secretKey)
    		}
    
    		if err != nil {
    			continue
    		}
    		if cred.ParentUser == "" {
    			continue
    		}
    
    		subClaimValue := cred.ParentUser
    		if v, ok := claims[subClaim]; ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. src/encoding/xml/marshal_test.go

    		if test.MarshalOnly {
    			continue
    		}
    		if _, ok := test.Value.(*Plain); ok {
    			continue
    		}
    		if test.ExpectXML == `<top>`+
    			`<x><b xmlns="space">b</b>`+
    			`<b xmlns="space1">b1</b></x>`+
    			`</top>` {
    			// TODO(rogpeppe): re-enable this test in
    			// https://go-review.googlesource.com/#/c/5910/
    			continue
    		}
    
    		vt := reflect.TypeOf(test.Value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top