Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 241 for cat1 (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh

    # license that can be found in the LICENSE file.
    
    COMMAND="mksysnum_plan9.sh $@"
    
    cat <<EOF
    // $COMMAND
    // MACHINE GENERATED BY THE ABOVE COMMAND; DO NOT EDIT
    
    package plan9
    
    const(
    EOF
    
    SP='[ 	]' # space or tab
    sed "s/^#define${SP}\\([A-Z0-9_][A-Z0-9_]*\\)${SP}${SP}*\\([0-9][0-9]*\\)/SYS_\\1=\\2/g" \
    	< $1 | grep -v SYS__
    
    cat <<EOF
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 459 bytes
    - Viewed (0)
  2. src/syscall/mksysnum_plan9.sh

    # license that can be found in the LICENSE file.
    
    COMMAND="mksysnum_plan9.sh $@"
    
    cat <<EOF
    // $COMMAND
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const(
    EOF
    
    SP='[ 	]' # space or tab
    sed "s/^#define${SP}\\([A-Z0-9_][A-Z0-9_]*\\)${SP}${SP}*\\([0-9][0-9]*\\)/SYS_\\1=\\2/g" \
    	< $1 | grep -v SYS__
    
    cat <<EOF
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 459 bytes
    - Viewed (0)
  3. src/net/http/routing_tree_test.go

    		{"GET", "", "/path/*",
    			"/path/{p...}", []string{"*"}},
    	})
    
    	// A pattern ending in {$} should only match URLS with a trailing slash.
    	pat1 := "/a/b/{$}"
    	test(buildTree(pat1), []testCase{
    		{"GET", "", "/a/b", "", nil},
    		{"GET", "", "/a/b/", pat1, nil},
    		{"GET", "", "/a/b/c", "", nil},
    		{"GET", "", "/a/b/c/d", "", nil},
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. test/fixedbugs/issue12006.go

    			println("is string")
    		}
    	}
    	return nil
    }
    
    func TFooJ1() {
    	a := int32(1)
    	b := "cat"
    	c := &a
    	FooJ(a, b, c) // ERROR "a does not escape" "b does not escape" "... argument does not escape"
    }
    
    func TFooJ2() {
    	a := int32(1) // ERROR "moved to heap: a"
    	b := "cat"
    	c := &a
    	isink = FooJ(a, b, c) // ERROR "a escapes to heap" "b escapes to heap" "... argument does not escape"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. pkg/testcerts/generate-certs.sh

    # Generates the a CA cert, a server key/cert, client key/cert signed by
    # the CA.
    #
    # reference: https://github.com/kubernetes/kubernetes/blob/master/plugin/pkg/admission/webhook/gencerts.sh
    
    set -e
    
    cat > client.conf <<EOF
    [req]
    req_extensions = v3_req
    distinguished_name = req_distinguished_name
    [req_distinguished_name]
    [ v3_req ]
    basicConstraints = CA:FALSE
    keyUsage = nonRepudiation, digitalSignature, keyEncipherment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. samples/certs/generate-workload.sh

    cp "$FINAL_DIR/leaf-workload-$sa-cert.pem" "$FINAL_DIR/workload-$sa-cert.pem"
    cat "$certchain" >> "$FINAL_DIR/workload-$sa-cert.pem"
    cp "$certchain" "$FINAL_DIR/workload-$sa-root-certs.pem"
    cat "$rootcert" >> "$FINAL_DIR/workload-$sa-root-certs.pem"
    
    echo "Generated workload-$sa-[cert|key].pem with URI SAN $san"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. tools/certs/Makefile.k8s.mk

    		kubectl get secret istio-ca-secret -n $(ISTIO_NAMESPACE) -o "jsonpath={.data['ca-key\.pem']}" | base64 -d > $(cluster)/k8s-root-key.pem; \
    	fi
    
    k8s-root-cert.pem:
    	@cat $(cluster)/k8s-root-cert.pem > $@
    
    k8s-root-key.pem:
    	@cat $(cluster)/k8s-root-key.pem > $@
    #------------------------------------------------------------------------
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/cast_bf16.mlir

    ^bb0(%arg0: tensor<4x5xbf16>):
      // CHECK-LABEL: @main
      // CHECK:  (tensor<4x5xbf16>) -> tensor<4x5xf32>
      // CHECK-NEXT:  (tensor<4x5xf32>) -> tensor<4x5xbf16>
      %0 = "tfl.cast" (%arg0) : (tensor<4x5xbf16>) -> tensor<4x5xf32> loc("cast1")
      %1 = "tfl.cast" (%0) : (tensor<4x5xf32>) -> tensor<4x5xbf16> loc("cast2")
      func.return %1 : tensor<4x5xbf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 18 21:28:19 UTC 2024
    - 596 bytes
    - Viewed (0)
  9. src/runtime/pprof/proto_test.go

    	}
    }
    
    var profSelfMapsTests = `
    00400000-0040b000 r-xp 00000000 fc:01 787766                             /bin/cat
    0060a000-0060b000 r--p 0000a000 fc:01 787766                             /bin/cat
    0060b000-0060c000 rw-p 0000b000 fc:01 787766                             /bin/cat
    014ab000-014cc000 rw-p 00000000 00:00 0                                  [heap]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-cfg.mlir

    // CHECK:   [[THEN:%.+]] = call @testIfThen([[CAST0]]) : (tensor<!tf_type.variant>) -> tensor<!tf_type.variant>
    // CHECK:   [[CAST1:%.+]] = "tf.Cast"([[THEN]]) <{Truncate = false}> : (tensor<!tf_type.variant>) -> tensor<!tf_type.variant<tensor<f32>>>
    // CHECK:   cf.br ^bb3([[CAST1]] : tensor<!tf_type.variant<tensor<f32>>>)
    // CHECK: ^bb2:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top