Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Strip (0.05 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          }
        },
        "node_modules/strip-bom": {
          "version": "3.0.0",
          "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
          "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
          "dev": true,
          "engines": {
            "node": ">=4"
          }
        },
        "node_modules/strip-indent": {
          "version": "3.0.0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  2. 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)
  3. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    repeat(String, int); public static String rightPad(String, int); public static String rightPad(String, int, String); public static String leftPad(String, int); public static String leftPad(String, int, String); public static String strip(String); public static String strip(String, String); public static String[] stripAll(String[]); public static String[] stripAll(String[], String); public static String stripEnd(String, String); public static String stripStart(String, String); public static String upperCase(String);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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