Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for for3 (0.06 sec)

  1. cmd/bucket-policy.go

    		}
    		cloneHeader.Del(objLock)
    	}
    
    	for key, values := range cloneHeader {
    		if strings.EqualFold(key, xhttp.AmzObjectTagging) {
    			continue
    		}
    		if existingValues, found := args[key]; found {
    			args[key] = append(existingValues, values...)
    		} else {
    			args[key] = values
    		}
    	}
    
    	cloneURLValues := make(url.Values, len(r.Form))
    	for k, v := range r.Form {
    		cloneURLValues[k] = v
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/ProviderAwareCompilerDaemonForkOptions.java

    import org.gradle.util.internal.CollectionUtils;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Fork options for compilation that can accept user-defined {@link CommandLineArgumentProvider} objects.
     *
     * Only take effect if {@code fork} is {@code true}.
     *
     * @since 7.1
     */
    @Incubating
    public class ProviderAwareCompilerDaemonForkOptions extends BaseForkOptions {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. hack/golangci-strict.yaml

          path-except: cmd/kubeadm
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/mime/multipart/writer.go

    }
    
    // FormDataContentType returns the Content-Type for an HTTP
    // multipart/form-data with this [Writer]'s Boundary.
    func (w *Writer) FormDataContentType() string {
    	b := w.boundary
    	// We must quote the boundary if it contains any of the
    	// tspecials characters defined by RFC 2045, or space.
    	if strings.ContainsAny(b, `()<>@,;:\"/[]?= `) {
    		b = `"` + b + `"`
    	}
    	return "multipart/form-data; boundary=" + b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/tag/tag.go

    func Compare(a string, b []byte) int {
    	return cmp(Index(a), b)
    }
    
    // FixCase reformats b to the same pattern of cases as form.
    // If returns false if string b is malformed.
    func FixCase(form string, b []byte) bool {
    	if len(form) != len(b) {
    		return false
    	}
    	for i, c := range b {
    		if form[i] <= 'Z' {
    			if c >= 'a' {
    				c -= 'z' - 'Z'
    			}
    			if c < 'A' || 'Z' < c {
    				return false
    			}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go

    		"api/all=true|false controls all API versions\n"+
    		"api/ga=true|false controls all API versions of the form v[0-9]+\n"+
    		"api/beta=true|false controls all API versions of the form v[0-9]+beta[0-9]+\n"+
    		"api/alpha=true|false controls all API versions of the form v[0-9]+alpha[0-9]+\n"+
    		"api/legacy is deprecated, and will be removed in a future version")
    }
    
    // Validate validates RuntimeConfig with a list of registries.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyForkOptions.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.tasks.compile;
    
    /**
     * Fork options for Groovy compilation. Only take effect if {@code GroovyCompileOptions.fork}
     * is {@code true}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 925 bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/BaseForkOptions.java

    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Objects;
    import java.util.stream.Collectors;
    
    /**
     * Fork options for compilation. Only take effect if {@code fork}
     * is {@code true}.
     */
    public class BaseForkOptions extends AbstractOptions {
        private static final long serialVersionUID = 0;
    
        private String memoryInitialSize;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/crypto/x509/pkcs1.go

    	if err != nil {
    		return nil, err
    	}
    	key.Precompute()
    
    	return key, nil
    }
    
    // MarshalPKCS1PrivateKey converts an [RSA] private key to PKCS #1, ASN.1 DER form.
    //
    // This kind of key is commonly encoded in PEM blocks of type "RSA PRIVATE KEY".
    // For a more flexible key format which is not [RSA] specific, use
    // [MarshalPKCS8PrivateKey].
    func MarshalPKCS1PrivateKey(key *rsa.PrivateKey) []byte {
    	key.Precompute()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

                    clickLog.setQueryRequestedAt(DfTypeUtil.toLocalDateTime(Long.parseLong(form.rt)));
                    clickLog.setUserSessionId(userSessionId);
                    clickLog.setDocId(form.docId);
                    clickLog.setQueryId(form.queryId);
                    if (form.order != null) {
                        clickLog.setOrder(form.order);
                    }
                    searchLogHelper.addClickLog(clickLog);
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top