Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Strip (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      ];
    }
    
    def StripNoinlineAttributePass : Pass<"tf-strip-noinline-attribute", "ModuleOp"> {
      let summary = "Strip the tf._noinline attribute from top-level functions.";
      let constructor = "TF::CreateStripNoinlineAttributePass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    	(STP [48] ptr (MOVDconst [0]) (MOVDconst [0])
    		(STP [32] ptr (MOVDconst [0]) (MOVDconst [0])
    			(STP [16] ptr (MOVDconst [0]) (MOVDconst [0])
    				(STP [0] ptr (MOVDconst [0]) (MOVDconst [0]) mem))))
    
    // strip off fractional word zeroing
    (Zero [s] ptr mem) && s%16 != 0 && s%16 <= 8 && s > 16 =>
    	(Zero [8]
    		(OffPtr <ptr.Type> ptr [s-8])
    		(Zero [s-s%16] ptr mem))
    (Zero [s] ptr mem) && s%16 != 0 && s%16 > 8 && s > 16 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    }
    
    # Quote something appropriate for a yaml string.
    #
    # TODO(zmerlynn): Note that this function doesn't so much "quote" as
    # "strip out quotes", and we really should be using a YAML library for
    # this, but PyYAML isn't shipped by default, and *rant rant rant ... SIGH*
    function yaml-quote {
      echo "${@:-}" | sed -e "s/'/''/g;s/^/'/i;s/$/'/i"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    					Namespace: nodeMetricNamespace,
    					Subsystem: iamSubsystem,
    					Name:      "plugin_authn_service_succ_avg_rtt_ms_minute",
    					Help:      "When plugin authentication is configured, returns average round-trip-time of successful requests in the last full minute",
    					Type:      gaugeMetric,
    				},
    				Value: pluginAuthNMetrics.AvgSuccRTTMs,
    			},
    			{
    				Description: MetricDescription{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    	_, err := tr.RoundTrip(req)
    	if err != errFakeRoundTrip {
    		t.Errorf("got error: %v; want %q", err, errFakeRoundTrip)
    	}
    	wantIdle("after round trip", 1)
    }
    
    func TestTransportRemovesH2ConnsAfterIdle(t *testing.T) {
    	run(t, testTransportRemovesH2ConnsAfterIdle, []testMode{http2Mode})
    }
    func testTransportRemovesH2ConnsAfterIdle(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. src/crypto/x509/x509_test.go

    				}
    			} else {
    				// When we hack our custom Subject in the test cases above,
    				// we don't set the additional fields (such as Names) in the
    				// hacked issuer. Round-trip a parsing of pkix.Name so that
    				// we add these missing fields for the comparison.
    				issuerRDN := tc.issuer.Subject.ToRDNSequence()
    				var caIssuer pkix.Name
    				caIssuer.FillFromRDNSequence(&issuerRDN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	// allow a misbehaving client to soak up server connections indefinitely by
    	// withholding an ACK, nor do we want to go through the complexity or overhead
    	// of using low-level APIs to figure out when a TCP round-trip has completed.
    	//
    	// Instead, we declare that we are “reasonably certain” that we received the
    	// ACK if maxRSTAvoidanceDelay has elapsed.
    	time.Sleep(rstAvoidanceDelay)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	gp.m.locks++
    
    	// Entersyscall must not call any function that might split/grow the stack.
    	// (See details in comment above.)
    	// Catch calls that might, by replacing the stack guard with something that
    	// will trip any stack check and leaving a flag to tell newstack to die.
    	gp.stackguard0 = stackPreempt
    	gp.throwsplit = true
    
    	// Leave SP around for GC and traceback.
    	save(pc, sp, bp)
    	gp.syscallsp = sp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top