Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for bananas (0.46 sec)

  1. src/cmd/go/testdata/script/mod_tidy_version.txt

    	# write our version in toolchain lines.
    env goversion=1.99.0
    env TESTGO_VERSION=go${goversion}
    
    # An invalid argument should be rejected.
    
    ! go mod tidy -go=bananas
    stderr '^invalid value "bananas" for flag -go: expecting a Go version like "'$goversion'"$'
    cmp go.mod go.mod.orig
    
    ! go mod tidy -go=0.9
    stderr '^invalid value "0.9" for flag -go: expecting a Go version like "'$goversion'"$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/delegated.yaml.golden

        internal.istio.io/parents: HTTPRoute/http.banana
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: http-0-istio-autogenerated-k8s-gateway
      namespace: banana
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-banana
      hosts:
      - '*'
      http:
      - name: banana.http.0
        route:
        - destination:
            host: httpbin-banana.banana.svc.domain.suffix
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/delegated.yaml

            selector:
              matchLabels:
                kubernetes.io/metadata.name: apple
      - name: banana
        hostname: "banana.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchLabels:
                kubernetes.io/metadata.name: banana
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/init_text_file_to_import_saved_model.mlir

      func.return
      // CHECK-LABEL: func @init_all_tables
      // CHECK-DAG: [[CST:%.*]]  = arith.constant dense<["apple", "banana", "grape"]> : tensor<3x!tf_type.string>
      // CHECK-DAG: [[CST_0:%.*]]  = arith.constant dense<[0, 1, 2]> : tensor<3xi64>
      // CHECK: [[VAL:%.*]] = "tf.HashTableV2"()
      // CHECK: "tf.LookupTableImportV2"([[VAL]], [[CST]], [[CST_0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.acceptFrame() // SYN_REPLY
        peer.sendFrame().pushPromise(3, 2, headerEntries("b", "banana"))
        peer.acceptFrame() // RST_STREAM
        peer.play()
    
        // Play it back.
        val connection = connect(peer)
        connection.newStream(headerEntries("b", "banana"), false)
    
        // Verify the peer received what was expected.
        assertThat(peer.takeFrame().type).isEqualTo(Http2.TYPE_HEADERS)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CookiesTest.kt

        val request = server.takeRequest()
        assertThat(request.headers["Cookie"]).isEqualTo("a=android; b=banana")
      }
    
      @Test
      fun receiveAndSendMultipleCookies() {
        server.enqueue(
          MockResponse.Builder()
            .addHeader("Set-Cookie", "a=android")
            .addHeader("Set-Cookie", "b=banana")
            .build(),
        )
        server.enqueue(MockResponse())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

                # Should generate error, because details is only exported to "banana" ns
                host: details.default.svc.cluster.local
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      # This is cross-namespace, but not a problem, details has explicit networking.istio.io/exportTo=banana
      name: banana-details
      namespace: banana
    spec:
      hosts: [details]
      http:
        - route:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/container/heap/example_pq_test.go

    // and then removes the items in priority order.
    func Example_priorityQueue() {
    	// Some items and their priorities.
    	items := map[string]int{
    		"banana": 3, "apple": 2, "pear": 4,
    	}
    
    	// Create a priority queue, put the items in it, and
    	// establish the priority queue (heap) invariants.
    	pq := make(PriorityQueue, len(items))
    	i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:27:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/delegated.status.yaml.golden

          reason: Programmed
          status: "True"
          type: Programmed
        - lastTransitionTime: fake
          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: banana
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/regexp/example_test.go

    	fmt.Println(a.Split("banana", -1))
    	fmt.Println(a.Split("banana", 0))
    	fmt.Println(a.Split("banana", 1))
    	fmt.Println(a.Split("banana", 2))
    	zp := regexp.MustCompile(`z+`)
    	fmt.Println(zp.Split("pizza", -1))
    	fmt.Println(zp.Split("pizza", 0))
    	fmt.Println(zp.Split("pizza", 1))
    	fmt.Println(zp.Split("pizza", 2))
    	// Output:
    	// [b n n ]
    	// []
    	// [banana]
    	// [b nana]
    	// [pi a]
    	// []
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top