Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 172 for excluded (0.12 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (LTDBR (Select0 x:(F(ADD|SUB) _ _)))   && b == x.Block => (Select1 x)
    (LTEBR (Select0 x:(F(ADDS|SUBS) _ _))) && b == x.Block => (Select1 x)
    
    // Fold memory operations into operations.
    // Exclude global data (SB) because these instructions cannot handle relative addresses.
    // TODO(mundaym): indexed versions of these?
    ((ADD|SUB|MULLD|AND|OR|XOR) <t> x g:(MOVDload [off] {sym} ptr mem))
      && ptr.Op != OpSB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/asm0.go

    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    	}
    	tmpl := Must(New("tmpl").Parse(`{{template "tmpl" .}}`))
    	err := tmpl.Execute(io.Discard, nil)
    	got := "<nil>"
    	if err != nil {
    		got = err.Error()
    	}
    	const want = "exceeded maximum template depth"
    	if !strings.Contains(got, want) {
    		t.Errorf("got error %q; want %q", got, want)
    	}
    }
    
    func TestAddrOfIndex(t *testing.T) {
    	// golang.org/issue/14916.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    	}
    	if !errors.Is(err, context.DeadlineExceeded) {
    		t.Errorf("ReadAll error = %q; expected some context.DeadlineExceeded", err)
    	}
    	if got := ne.Error(); !strings.Contains(got, "Client.Timeout exceeded") {
    		if runtime.GOOS == "windows" && strings.HasPrefix(runtime.GOARCH, "arm") {
    			testenv.SkipFlaky(t, 43120)
    		}
    		t.Errorf("error string = %q; missing timeout substring", got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    				return nil
    			}
    			continue
    		}
    		diskHealthCheckOK(ctx, nil)
    		if req.MaxSize > 0 && int64(len(data)) > req.MaxSize {
    			r.Exists = true
    			r.Error = fmt.Sprintf("max size (%d) exceeded: %d", req.MaxSize, len(data))
    			select {
    			case <-ctx.Done():
    				return ctx.Err()
    			case resp <- r:
    				continue
    			}
    		}
    		found++
    		r.Exists = true
    		r.Data = data
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  6. pilot/pkg/model/push_context.go

    					// if there is a workload selector, check for matching workload labels
    					if sidecar.GetWorkloadSelector() != nil {
    						workloadSelector := labels.Instance(sidecar.GetWorkloadSelector().GetLabels())
    						// exclude workload selector that not match
    						if !workloadSelector.SubsetOf(workloadLabels) {
    							continue
    						}
    					}
    
    					// it is guaranteed sidecars with selectors are put in front
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    	for _, fc := range virtualListener.FilterChains {
    		if fc.FilterChainMatch.DestinationPort.GetValue() == 15021 {
    			t.Fatalf("port 15021 should not be included in inbound listener")
    		}
    	}
    }
    
    func testInboundListenerConfigWithGrpc(t *testing.T, proxy *model.Proxy, services ...*model.Service) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

    //   edges going from nodes referenced in `inputs` to nodes in the body when
    //   the former nodes are not in the body (automatically skipped or not
    //   included in explicitly specified body).
    //
    // Returns:
    //  On success, a newly created TF_Function instance. It must be deleted by
    //  calling TF_DeleteFunction.
    //
    //  On failure, null.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    	for id, wantObj := range info.Uses {
    		inner := mainScope.Innermost(id.Pos())
    		if inner == nil {
    			t.Errorf("%s: can't find innermost scope enclosing %q", id.Pos(), id.Value)
    			continue
    		}
    
    		// Exclude selectors and qualified identifiers---lexical
    		// refs only.  (Ideally, we'd see if the AST parent is a
    		// SelectorExpr, but that requires PathEnclosingInterval
    		// from golang.org/x/tools/go/ast/astutil.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    		inner := mainScope.Innermost(id.Pos())
    		if inner == nil {
    			t.Errorf("%s: can't find innermost scope enclosing %q",
    				fset.Position(id.Pos()), id.Name)
    			continue
    		}
    
    		// Exclude selectors and qualified identifiers---lexical
    		// refs only.  (Ideally, we'd see if the AST parent is a
    		// SelectorExpr, but that requires PathEnclosingInterval
    		// from golang.org/x/tools/go/ast/astutil.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top