Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 931 for suffix1 (0.2 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

                + "set -eu\n"
                + "ARCH_ARRAY=($ARCHS)\n"
                + "SUFFIXES=(swiftdoc swiftmodule h)\n"
                + "for ARCH in \"${ARCH_ARRAY[@]}\"\n"
                + "do\n"
                + "  for SUFFIX in \"${SUFFIXES[@]}\"\n"
                + "  do\n"
                + "    touch \"$OBJECT_FILE_DIR_normal/$ARCH/$PRODUCT_NAME.$SUFFIX\"\n"
                + "  done\n"
                + "done");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    			rest := strings.TrimLeft(suffix, "0123456789")
    			numerals := suffix[:len(suffix)-len(rest)]
    			suffix = rest
    			i, err := strconv.Atoi(numerals)
    			if err != nil {
    				return nil, fmt.Errorf("invalid path: bad numeric operand %q for code %q", numerals, code)
    			}
    			index = int(i)
    		case opObj:
    			// no operand
    		default:
    			// The suffix must end with a type->object operation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/HasSuffixPatternStep.java

            this.suffix = suffix;
            suffixLength = suffix.length();
            this.caseSensitive = caseSensitive;
            this.prefixLength = prefixLength;
        }
    
        @Override
        public String toString() {
            return "{suffix: " + suffix + "}";
        }
    
        @Override
        public boolean matches(String candidate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/go/doc/example_test.go

    	}
    
    	want := map[string][]string{
    		"": {"", "suffix", "suffix_xX_X_x"}, // Package-level examples.
    
    		"Type1":     {"", "foo_Suffix", "func2", "suffix"},
    		"Type1_Foo": {"", "suffix"},
    		"Type1_foo": {"", "suffix"},
    
    		"Func1":     {"", "foo_Suffix", "suffix"},
    		"Func1_Foo": {"", "suffix"},
    		"Func1_foo": {"", "suffix"},
    
    		"Type1.Func1":     {"", "foo_Suffix", "suffix"},
    		"Type1.Func1_Foo": {"", "suffix"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  5. cluster/gce/gci/append_or_replace_prefixed_line_test.go

    		desc                string
    		prefix              string
    		suffix              string
    		initialFileContents string
    		want                string
    	}{
    		{
    			desc:   "simple string and empty file",
    			prefix: "hello",
    			suffix: "world",
    			want: `helloworld
    `,
    		},
    		{
    			desc:   "simple string and non empty file",
    			prefix: "hello",
    			suffix: "world",
    			initialFileContents: `jelloworld
    chelloworld
    `,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - echo-1.default.svc.domain.suffix
      tls:
      - match:
        - sniHosts:
          - echo-1.default.svc.domain.suffix
        route:
        - destination:
            host: echo.default.svc.domain.suffix
            port:
              number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/doc.go

    32-bit variant str, stur, ldrsw => MOVW;
    32-bit variant ldr => MOVWU;
    ldrb => MOVBU; ldrh => MOVHU;
    ldrsb, sturb, strb => MOVB;
    ldrsh, sturh, strh =>  MOVH.
    
    4. Go moves conditions into opcode suffix, like BLT.
    
    5. Go adds a V prefix for most floating-point and SIMD instructions, except cryptographic extension
    instructions and floating-point(scalar) instructions.
    
    Examples:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml.golden

            exact: /baz
        name: allowed-2.http.1
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
      - match:
        - uri:
            prefix: /foo/bar
        name: allowed-2.http.0
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
      - match:
        - headers:
            my-header:
              exact: some-value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/extended-custom-http-provider-out2.yaml

            - ignoreCase: true
              prefix: x-prefix-
            - ignoreCase: true
              suffix: -suffix
          allowedClientHeadersOnSuccess:
            patterns:
            - exact: Set-cookie
              ignoreCase: true
            - ignoreCase: true
              prefix: x-prefix-
            - ignoreCase: true
              suffix: -suffix
          allowedUpstreamHeaders:
            patterns:
            - exact: Authorization
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    			op = "FMOVD" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    		} else if rno >= uint16(Q0) && rno <= uint16(Q31) {
    			op = "FMOVQ" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    		} else {
    			op = "MOVD" + suffix
    		}
    
    	case LDRB:
    		op = "MOVBU" + suffix
    
    	case LDRH:
    		op = "MOVHU" + suffix
    
    	case LDRSW:
    		op = "MOVW" + suffix
    
    	case LDRSB:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
Back to top