Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 101 for qBytes (0.12 sec)

  1. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    # Stop when "xargs" is not available.
    if ! command -v xargs >/dev/null 2>&1
    then
        die "xargs is not available"
    fi
    
    # Use "xargs" to parse quoted args.
    #
    # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
    #
    # In Bash we could simply go:
    #
    #   readarray ARGS < <( xargs -n1 <<<"\$var" ) &&
    #   set -- "\${ARGS[@]}" "\$@"
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    	// warn-text is quoted with backslash escaping (RFC2047-encoded according to RFC2616, not encoded according to RFC7234)
    	// warn-date is optional, quoted, and in HTTP-date format (no embedded or escaped quotes)
    	//
    	// additional warnings can optionally be included in the same header by comma-separating them:
    	// warn-code warn-agent "warn-text" "warn-date"[, warn-code warn-agent "warn-text" "warn-date", ...]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/MultipartBody.kt

         * with Chrome's behavior (which also experimentally seems to match what IE does), but if you
         * actually want to have a good chance of things working, please avoid double-quotes, newlines,
         * percent signs, and the like in your field names.
         */
        internal fun StringBuilder.appendQuotedString(key: String) {
          append('"')
          for (i in 0 until key.length) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pkg/volume/util/hostutil/hostutil_linux.go

    	}
    
    	for _, opt := range info.SuperOptions {
    		if !strings.HasPrefix(opt, "context=") {
    			continue
    		}
    		// Remove context=
    		context := strings.TrimPrefix(opt, "context=")
    		// Remove double quotes
    		context = strings.Trim(context, "\"")
    		return context, nil
    	}
    	return "", nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. schema/field_test.go

    		{Name: "TIME", DBName: "ftime", BindNames: []string{"TIME"}, DataType: schema.Time, Creatable: true, Updatable: true, Readable: true, Tag: `gorm:"column:ftime"`},
    		{Name: "BYTES", DBName: "fbytes", BindNames: []string{"BYTES"}, DataType: schema.Bytes, Creatable: true, Updatable: true, Readable: true, Tag: `gorm:"column:fbytes"`},
    	}
    
    	for _, f := range fields {
    		checkSchemaField(t, alias, f, func(f *schema.Field) {})
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .build());
        }
    
        public CommandLine parse(String[] args) throws ParseException {
            // We need to eat any quotes surrounding arguments...
            String[] cleanArgs = CleanArgument.cleanArgs(args);
    
            CommandLineParser parser = new DefaultParser();
    
            return parser.parse(options, cleanArgs);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/internal/fuzz/encoding.go

    			}
    		case byte: // uint8
    			// For bytes, we arbitrarily prefer the character interpretation.
    			// (Every byte has a valid character encoding.)
    			fmt.Fprintf(b, "byte(%q)\n", t)
    		case []byte: // []uint8
    			fmt.Fprintf(b, "[]byte(%q)\n", t)
    		default:
    			panic(fmt.Sprintf("unsupported type: %T", t))
    		}
    	}
    	return b.Bytes()
    }
    
    // unmarshalCorpusFile decodes corpus bytes into their respective values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/JavaExec.java

         * For example, to pass the argument {@code foo bar}, use {@code "foo bar"}.
         * </p>
         * <p>
         * Note: the parser does <strong>not</strong> support using backslash to escape quotes. If this is needed,
         * use the other quote delimiter around it.
         * For example, to pass the argument {@code 'singly quoted'}, use {@code "'singly quoted'"}.
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/engine.go

    // within script arguments (expanding to the value of os.PathListSeparator and
    // os.PathSeparator respectively) but are not inherited in subprocess
    // environments.
    //
    // Adding single quotes around text keeps spaces in that text from being treated
    // as word separators and also disables environment variable expansion.
    // Inside a single-quoted block of text, a repeated single quote indicates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  10. src/syscall/mkerrors.sh

    #include <stdlib.h>
    #include <errno.h>
    #include <ctype.h>
    #include <string.h>
    #include <signal.h>
    
    #define nelem(x) (sizeof(x)/sizeof((x)[0]))
    
    enum { A = 'A', Z = 'Z', a = 'a', z = 'z' }; // avoid need for single quotes below
    
    int errors[] = {
    "
    	for i in $errors
    	do
    		echo -E '	'$i,
    	done
    
    	echo -E "
    };
    
    int signals[] = {
    "
    	for i in $signals
    	do
    		echo -E '	'$i,
    	done
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
Back to top