Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for Strip (0.07 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    #include "absl/strings/escaping.h"
    #include "absl/strings/numbers.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/string_view.h"
    #include "absl/strings/strip.h"
    #include "absl/synchronization/mutex.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/DenseSet.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/ScopeExit.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertContent("mp3 data", response)
      }
    
      @Test
      fun ntripr1() {
        server.enqueue(
          MockResponse.Builder()
            .status("SOURCETABLE 200 OK")
            .addHeader("Server: NTRIP Caster 1.5.5/1.0")
            .addHeader("Date: 23/Jan/2004:08:54:59 UTC")
            .addHeader("Content-Type: text/plain")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  4. fastapi/routing.py

            # if a "form feed" character (page break) is found in the description text,
            # truncate description text to the content preceding the first "form feed"
            self.description = self.description.split("\f")[0].strip()
            response_fields = {}
            for additional_status_code, response in self.responses.items():
                assert isinstance(response, dict), "An additional response must be a dict"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  5. 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)
  6. src/crypto/sha512/sha512_test.go

    	},
    	{
    		"981323be3eca6ccfa598e58dd74ed8cb05d5f7f6653b7604b684f904",
    		"Free! Free!/A trip/to Mars/for 900/empty jars/Burma Shave",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  7. src/encoding/json/testdata/code.json.gz

    ":3,"min_t":1228781586,"max_t":1236205616,"mean_t":1231488662},{"name":"input-text-self-emptying-click-expected.png","kids":[],"cl_weight":0.003061301158710795,"touches":2,"min_t":1228781586,"max_t":1236205616,"mean_t":1232493601},{"name":"option-strip-whitespace-expected.checksum","kids":[],"cl_weight":0.0005553709994722575,"touches":2,"min_t":1229478785,"max_t":1236205616,"mean_t":1232842200},{"name":"input-disabled-color-expected.png","kids":[],"cl_weight":0.00012874983906270118,"touches":1,"...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        Operation& controlled_op = GetBody().front();
        // The "controls" syntax only encodes a single location.
        YieldOp yield_op = GetYield();
        // In order to correctly round-trip, we can only use this syntax when all
        // the locations are identical.
        if (controlled_op.getLoc() == getLoc() && yield_op.getLoc() == getLoc()) {
          p << " controls ";
          p.printGenericOp(&controlled_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top