Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/strings/strings_test.go

    var trimTests = []struct {
    	f            string
    	in, arg, out string
    }{
    	{"Trim", "abba", "a", "bb"},
    	{"Trim", "abba", "ab", ""},
    	{"TrimLeft", "abba", "ab", ""},
    	{"TrimRight", "abba", "ab", ""},
    	{"TrimLeft", "abba", "a", "bba"},
    	{"TrimLeft", "abba", "b", "abba"},
    	{"TrimRight", "abba", "a", "abb"},
    	{"TrimRight", "abba", "b", "abba"},
    	{"Trim", "<tag>", "<>", "tag"},
    	{"Trim", "* listitem", " *", "listitem"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    	in, arg, out string
    }
    
    var trimTests = []TrimTest{
    	{"Trim", "abba", "a", "bb"},
    	{"Trim", "abba", "ab", ""},
    	{"TrimLeft", "abba", "ab", ""},
    	{"TrimRight", "abba", "ab", ""},
    	{"TrimLeft", "abba", "a", "bba"},
    	{"TrimLeft", "abba", "b", "abba"},
    	{"TrimRight", "abba", "a", "abb"},
    	{"TrimRight", "abba", "b", "abba"},
    	{"Trim", "<tag>", "<>", "tag"},
    	{"Trim", "* listitem", " *", "listitem"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

          MockResponse(socketPolicy = ResetStreamAtStart(ErrorCode.REFUSED_STREAM.httpCode)),
        )
        server.enqueue(MockResponse(body = "abc"))
    
        val request = Request(server.url("/"))
        val response = client.newCall(request).execute()
        assertThat(response.body.string()).isEqualTo("abc")
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/asm5.go

    			opset(ARSB, r0)
    			opset(AADC, r0)
    			opset(ASBC, r0)
    			opset(ARSC, r0)
    
    		case AORR:
    			opset(AEOR, r0)
    			opset(ABIC, r0)
    
    		case ACMP:
    			opset(ATEQ, r0)
    			opset(ACMN, r0)
    			opset(ATST, r0)
    
    		case AMVN:
    			break
    
    		case ABEQ:
    			opset(ABNE, r0)
    			opset(ABCS, r0)
    			opset(ABHS, r0)
    			opset(ABCC, r0)
    			opset(ABLO, r0)
    			opset(ABMI, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        setUp(parameters.first, parameters.second)
        val creator = cache.edit("k1")!!
        creator.setString(0, "ABC")
        creator.setString(1, "DE")
        assertThat(creator.newSource(0)).isNull()
        assertThat(creator.newSource(1)).isNull()
        creator.commit()
        val snapshot = cache["k1"]!!
        snapshot.assertValue(0, "ABC")
        snapshot.assertValue(1, "DE")
      }
    
      @ParameterizedTest
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

              func_aliases.values(), [quantize_model_test_base.FUNC_ALIAS]
          )
    
      @parameterized.parameters(
          testing.parameter_combinations([{
              'equation': (
                  'abc,cde->abde',
                  'abc,dce->abde',
              ),
          }])
      )
      def test_einsum_ptq_model(
          self,
          equation: str,
      ):
        _, y_shape, bias_shape, x_signature, y_signature = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    	margin-bottom: 0.3125em;
    	font-weight: bold;
    }
    
    dl dd {
    	margin-bottom: 1.25em;
    }
    
    /* Abbreviations */
    abbr,
    acronym {
    	text-transform: uppercase;
    	font-size: 90%;
    	color: var(--num-color);
    	border-bottom: 1px dotted #dddddd;
    	cursor: help;
    }
    
    abbr {
    	text-transform: none;
    }
    
    /* Blockquotes */
    blockquote {
    	margin: 0 0 1.25em;
    	padding: 0.5625em 1.25em 0 1.1875em;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.3.md

    * Fix "PVC Volume not detached if pod deleted via namespace deletion" issue ([#29077](https://github.com/kubernetes/kubernetes/pull/29077), [@saad-ali](https://github.com/saad-ali))
    * append an abac rule for $KUBE_USER. ([#29164](https://github.com/kubernetes/kubernetes/pull/29164), [@cjcullen](https://github.com/cjcullen))
    
    
    
    # v1.3.3
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  9. pkg/apis/networking/validation/validation_test.go

    				"a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-',"+
    					" and must start and end with an alphanumeric character (e.g. 'my-name',  or '123-abc', "+
    					"regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?')")},
    		},
    		"valid name, valid controller, valid Cluster scope": {
    			ingressClass: makeValidIngressClass("test123", "foo.co/bar",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // the associated expression.
      // Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
      // must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or
      // '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
      // optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
      //
      // Required.
      optional string name = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top