Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 193 for BREAK (0.05 sec)

  1. src/runtime/pprof/pprof_test.go

    		<-c
    	})
    }
    
    func TestCPUProfileMultithreadMagnitude(t *testing.T) {
    	if runtime.GOOS != "linux" {
    		t.Skip("issue 35057 is only confirmed on Linux")
    	}
    
    	// Linux [5.9,5.16) has a kernel bug that can break CPU timers on newly
    	// created threads, breaking our CPU accounting.
    	major, minor := unix.KernelVersion()
    	t.Logf("Running on Linux %d.%d", major, minor)
    	defer func() {
    		if t.Failed() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	// installed and still build Go programs (that don't use cgo).
    	for _, pkg := range cgoPackages {
    		if !t.internalLink() {
    			break
    		}
    
    		// ARM libgcc may be Thumb, which internal linking does not support.
    		if goarch == "arm" {
    			break
    		}
    
    		// What matters is that the tests build and start up.
    		// Skip expensive tests, especially x509 TestSystemRoots.
    		run := "^Test[^CS]"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        ```
        switch (branch_index) {
          case 0:
            output = branches[0](input);
            break;
          case 1:
            output = branches[1](input);
            break;
          ...
          case [[nbranches-1]]:
          default:
            output = branches[nbranches-1](input);
            break;
        }
        ```
      }];
    
      let arguments = (ins
        I32Tensor:$branch_index,
        Variadic<TF_Tensor>:$input,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    				addr = &p.To
    			} else {
    				break
    			}
    			if p.As == AAUIPC {
    				if p.Link == nil {
    					ctxt.Diag("AUIPC needing PC-relative reloc missing following instruction")
    					break
    				}
    				addr = &p.RestArgs[0].Addr
    			}
    			if addr.Sym == nil {
    				ctxt.Diag("PC-relative relocation missing symbol")
    				break
    			}
    			if addr.Sym.Type == objabi.STLSBSS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                    }
                    if (claimedBy == null) {
                        claimedBy = handler;
                    } else {
                        handler.ambiguous(propertyMetaData);
                        break;
                    }
                }
                if (claimedBy != null) {
                    continue;
                }
    
                unclaimedHandler.unclaimed(propertyMetaData);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    		default:
    			// UDP or other protocols: no need to log, it's too noisy
    			return
    		}
    	}
    
    	// If there is a TCP listener on well known port, cannot add any http filter chain
    	// with the inspector as it will break for server-first protocols. Similarly,
    	// if there was a HTTP listener on well known port, cannot add a tcp listener
    	// with the inspector as inspector breaks all server-first protocols.
    	if currentListenerEntry != nil &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    			ls := p.GetLabels()
    			matched := true
    
    			for k, v := range paramRef.Selector.MatchLabels {
    				if l, hasLabel := ls[k]; !hasLabel {
    					matched = false
    					break
    				} else if l != v {
    					matched = false
    					break
    				}
    			}
    
    			// Empty selector matches everything
    			if len(paramRef.Selector.MatchExpressions) == 0 && len(paramRef.Selector.MatchLabels) == 0 {
    				matched = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. src/testing/testing.go

    		runtime.GOMAXPROCS(procs)
    		for i := uint(0); i < *count; i++ {
    			if shouldFailFast() {
    				break
    			}
    			if i > 0 && !ran {
    				// There were no tests to run on the first
    				// iteration. This won't change, so no reason
    				// to keep trying.
    				break
    			}
    			ctx := newTestContext(*parallel, newMatcher(matchString, *match, "-test.run", *skip))
    			ctx.deadline = deadline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		[8]byte{'S', 'Y', 'S', 'S', 'Y', 'M', 'A', '/'}}
    
    	var i, j int
    	for i = 0; i < len(special); i++ {
    		for j = 0; j < len(special[i]); j++ {
    			if path[j] != special[i][j] {
    				break
    			}
    		}
    		if j == len(special[i]) {
    			return true
    		}
    	}
    	return false
    }
    
    func realpath(srcpath string, abspath []byte) (pathlen int, errno int) {
    	var source [1024]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        return false;
      }
    
      Node* const_input = nullptr;
      for (const Edge* e : n->in_edges()) {
        if (!e->IsControlEdge() && e->src()->IsConstant()) {
          const_input = e->src();
          break;
        }
      }
    
      if (!const_input) {
        return false;
      }
    
      const TensorProto* proto = nullptr;
      if (!TryGetNodeAttr(const_input->def(), "value", &proto)) {
        return false;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top