Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 150 for comma (0.16 sec)

  1. ci/official/README.md

    # a local build cache:
    TFCI=py312,linux_x86_cuda,public_cache,disk_cache ci/official/wheel.sh
    
    # First, set your TFCI variable to choose the environment settings.
    #   TFCI is a comma-separated list of filenames from the envs directory, which
    #   are all settings for the scripts. TF's CI jobs are all made of a combination
    #   of these env files.
    #
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 8K bytes
    - Viewed (0)
  2. internal/s3select/select_test.go

    			query:      `SELECT CAST(text AS STRING) AS text from s3object s WHERE id = 1`,
    			wantResult: `{"text":"a text, with comma"}`,
    		},
    		{
    			name:       "select-text-direct",
    			input:      testInput,
    			query:      `SELECT text from s3object s WHERE id = 1`,
    			wantResult: `{"text":"a text, with comma"}`,
    		},
    		{
    			name:       "select-time-direct",
    			input:      testInput,
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 76.2K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm.s

    	MOVW.S	R1<<R2, R3
    
    //
    // B/BL
    //
    //	LTYPE4 cond comma rel
    //	{
    //		outcode($1, $2, &nullgen, 0, &$4);
    //	}
    	B.EQ	1(PC) // BEQ 1(PC)
    
    //	LTYPE4 cond comma nireg
    //	{
    //		outcode($1, $2, &nullgen, 0, &$4);
    //	}
    	BEQ	2(PC)
    	B	foo(SB) // JMP foo(SB)
    	BEQ	2(PC)
    	B	bar<>(SB) // JMP bar<>(SB)
    
    //
    // BX
    //
    //	LTYPEBX comma ireg
    //	{
    //		outcode($1, Always, &nullgen, 0, &$3);
    //	}
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  4. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1F101         ; disallowed_STD3_mapped ; 0030 002C     # 5.2  DIGIT ZERO COMMA
    1F102         ; disallowed_STD3_mapped ; 0031 002C     # 5.2  DIGIT ONE COMMA
    1F103         ; disallowed_STD3_mapped ; 0032 002C     # 5.2  DIGIT TWO COMMA
    1F104         ; disallowed_STD3_mapped ; 0033 002C     # 5.2  DIGIT THREE COMMA
    1F105         ; disallowed_STD3_mapped ; 0034 002C     # 5.2  DIGIT FOUR COMMA
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
  5. doc/godebug.md

    using newer toolchains to compile old code.
    
    A GODEBUG setting is a `key=value` pair
    that controls the execution of certain parts of a Go program.
    The environment variable `GODEBUG`
    can hold a comma-separated list of these settings.
    For example, if a Go program is running in an environment that contains
    
    	GODEBUG=http2client=0,http2server=0
    
    then that Go program will disable the use of HTTP/2 by default in both
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  6. internal/config/notify/help.go

    			Description: config.DefaultComment,
    			Optional:    true,
    			Type:        "sentence",
    		},
    	}
    
    	HelpKafka = config.HelpKVS{
    		config.HelpKV{
    			Key:         target.KafkaBrokers,
    			Description: "comma separated list of Kafka broker addresses",
    			Type:        "csv",
    		},
    		config.HelpKV{
    			Key:         target.KafkaTopic,
    			Description: "Kafka topic used for bucket notifications",
    			Optional:    true,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Mar 19 04:37:54 GMT 2024
    - 18.8K bytes
    - Viewed (0)
  7. common/config/.golangci.yml

        check-blank: false
      govet:
        disable:
          # report about shadowed variables
          - shadow
      goimports:
        # put imports beginning with prefix after 3rd-party packages;
        # it's a comma-separated list of prefixes
        local-prefixes: istio.io/
      misspell:
        # Correct spellings using locale preferences for US or UK.
        # Default is to use a neutral variety of English.
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 22 19:22:39 GMT 2024
    - 11K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/parse.go

    	if tok != scanner.Ident {
    		p.errorf("expected identifier, found %q", p.lex.Text())
    		return "", "", nil, false // Might as well stop now.
    	}
    	word, cond = p.lex.Text(), ""
    	operands = scratch[:0]
    	// Zero or more comma-separated operands, one per loop.
    	nesting := 0
    	colon := -1
    	for tok != '\n' && tok != ';' {
    		// Process one operand.
    		var items []lex.Token
    		if cap(operands) > len(operands) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/values.yaml

        #   0 - Never scheduled
        #   1 - Least preferred
        #   2 - No preference
        #   3 - Most preferred
        arch: {}
    
        # Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level>
        # The control plane has different scopes depending on component, but can configure default log level across all components
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/values.yaml

        #   0 - Never scheduled
        #   1 - Least preferred
        #   2 - No preference
        #   3 - Most preferred
        arch: {}
    
        # Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level>
        # The control plane has different scopes depending on component, but can configure default log level across all components
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 13K bytes
    - Viewed (0)
Back to top