Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 422 for racewrite (0.65 sec)

  1. pkg/test/framework/components/echo/kube/testdata/healthcheck-rewrite.yaml

    Jonh Wendell <******@****.***> 1700195286 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. releasenotes/notes/prom-rewrite.yaml

    Brian Avery <******@****.***> 1597180858 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 208 bytes
    - Viewed (0)
  3. src/runtime/tracebuf.go

    // we can change it if it's deemed too error-prone.
    type traceWriter struct {
    	traceLocker
    	*traceBuf
    }
    
    // write returns an a traceWriter that writes into the current M's stream.
    func (tl traceLocker) writer() traceWriter {
    	return traceWriter{traceLocker: tl, traceBuf: tl.mp.trace.buf[tl.gen%2]}
    }
    
    // unsafeTraceWriter produces a traceWriter that doesn't lock the trace.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

    }
    
    TEST(ResourceOperationSafetyAnalysisTest, ChainOfOps) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      Node* write_0 = MakeWrite(root, "W0");
      Node* neutral_0 = MakeNeutral(root, "N0");
      Node* read_0 = MakeRead(root, "R0");
      Node* write_1 = MakeWrite(root, "W1");
      Node* neutral_1 = MakeNeutral(root, "N1");
      Node* read_1 = MakeRead(root, "R1");
    
      root.graph()->AddControlEdge(write_0, neutral_0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  5. src/runtime/traceexp.go

    	return traceExpWriter{traceWriter{traceLocker: traceLocker{gen: gen}, traceBuf: buf}, exp}
    }
    
    // ensure makes sure that at least maxSize bytes are available to write.
    //
    // Returns whether the buffer was flushed.
    func (w traceExpWriter) ensure(maxSize int) (traceExpWriter, bool) {
    	refill := w.traceBuf == nil || !w.available(maxSize)
    	if refill {
    		w.traceWriter = w.traceWriter.refill(w.exp)
    	}
    	return w, refill
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. tests/integration/security/mtls_healthcheck_test.go

    				name    string
    				rewrite bool
    			}{
    				{name: "rewrite-success", rewrite: true},
    			} {
    				t.NewSubTest(testCase.name).Run(func(t framework.TestContext) {
    					runHealthCheckDeployment(t, ns, testCase.name, testCase.rewrite)
    				})
    			}
    		})
    }
    
    func runHealthCheckDeployment(ctx framework.TestContext, ns namespace.Instance, //nolint:interfacer
    	name string, rewrite bool,
    ) {
    	ctx.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/line.go

    		}
    	}
    
    	return file, false
    }
    
    // applyRewrite applies the rewrite to the path,
    // returning the rewritten path and a boolean
    // indicating whether the rewrite applied at all.
    func applyRewrite(path, rewrite string) (string, bool) {
    	prefix, replace := rewrite, ""
    	if j := strings.LastIndex(rewrite, "=>"); j >= 0 {
    		prefix, replace = rewrite[:j], rewrite[j+len("=>"):]
    	}
    
    	if prefix == "" || !hasPathPrefix(path, prefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. tests/integration/pilot/tcp_probe_test.go

    				name     string
    				rewrite  bool
    				success  bool
    				openPort bool
    			}{
    				{name: "norewrite-success", rewrite: false, success: true, openPort: false},
    				{name: "rewrite-success", rewrite: true, success: true, openPort: true},
    			} {
    				t.NewSubTest(testCase.name).Run(func(t framework.TestContext) {
    					runTCPProbeDeployment(t, ns, testCase.name, testCase.rewrite, testCase.success, testCase.openPort)
    				})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. tests/integration/pilot/grpc_probe_test.go

    			for _, testCase := range []struct {
    				name     string
    				rewrite  bool
    				ready    bool
    				openPort bool
    			}{
    				{name: "rewrite-ready", rewrite: true, ready: true, openPort: true},
    			} {
    				t.NewSubTest(testCase.name).Run(func(t framework.TestContext) {
    					runGRPCProbeDeployment(t, ns, testCase.name, testCase.rewrite, testCase.ready, testCase.openPort)
    				})
    			}
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/gofmt/testdata/rewrite5.input

    // expressions without those nodes must also eliminate the associated
    // comments.
    
    package p
    
    func f(x int) int {
    	_ = x + x // this comment remains in the rewrite
    	_ = x /* this comment must not be in the rewrite */ + x
    	return x /* this comment must not be in the rewrite */ + x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 538 bytes
    - Viewed (0)
Back to top