Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 602 for for1 (0.05 sec)

  1. src/net/url/url_test.go

    			for k, evs := range test.out {
    				vs, ok := form[k]
    				if !ok {
    					t.Errorf("Missing key %q", k)
    					continue
    				}
    				if len(vs) != len(evs) {
    					t.Errorf("len(form[%q]) = %d, want %d", k, len(vs), len(evs))
    					continue
    				}
    				for j, ev := range evs {
    					if v := vs[j]; v != ev {
    						t.Errorf("form[%q][%d] = %q, want %q", k, j, v, ev)
    					}
    				}
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse.go

    		}
    
    		// Prepare for next iteration.
    		start = i
    		first = ifirst
    	}
    	sub = out
    
    	// Round 3: Collapse runs of single literals into character classes.
    	start = 0
    	out = sub[:0]
    	for i := 0; i <= len(sub); i++ {
    		// Invariant: the Regexps that were in sub[0:start] have been
    		// used or marked for reuse, and the slice space has been reused
    		// for out (len(out) <= start).
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    	if objectAPI == nil {
    		return
    	}
    
    	// Validate API arguments.
    	q := madmin.PolicyEntitiesQuery{
    		Users:  r.Form["user"],
    		Groups: r.Form["group"],
    		Policy: r.Form["policy"],
    	}
    
    	// Query IAM
    	res, err := globalIAMSys.QueryPolicyEntities(r.Context(), q)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    	defer afterTest(t)
    	tr := &recordingTransport{}
    	client := &Client{Transport: tr}
    
    	urlStr := "http://dummy.faketld/"
    	form := make(url.Values)
    	form.Set("foo", "bar")
    	form.Add("foo", "bar2")
    	form.Set("bar", "baz")
    	client.PostForm(urlStr, form) // Note: doesn't hit network
    
    	if tr.req.Method != "POST" {
    		t.Errorf("got method %q, want %q", tr.req.Method, "POST")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/TypeToken.java

    @ElementTypesAreNonnullByDefault
    public abstract class TypeToken<T> extends TypeCapture<T> implements Serializable {
    
      private final Type runtimeType;
    
      /** Resolver for resolving parameter and field types with {@link #runtimeType} as context. */
      @LazyInit @CheckForNull private transient TypeResolver invariantTypeResolver;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/TypeToken.java

    @ElementTypesAreNonnullByDefault
    public abstract class TypeToken<T> extends TypeCapture<T> implements Serializable {
    
      private final Type runtimeType;
    
      /** Resolver for resolving parameter and field types with {@link #runtimeType} as context. */
      @LazyInit @CheckForNull private transient TypeResolver invariantTypeResolver;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Using empty configuration blocks for file or directory permissions still sets them explicitly, just to fixed default values.
    Everything inside one of these configuration blocks is relative to the default values.
    Default permissions differ for files and directories:
    
    * *file*: read & write for *owner*, read for *group*, read for *other* (*0644*, *rw-r--r--*)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    )
    
    // Creates a SID for a well-known predefined alias, generally using the constants of the form
    // Win*Sid, for the local machine.
    func CreateWellKnownSid(sidType WELL_KNOWN_SID_TYPE) (*SID, error) {
    	return CreateWellKnownDomainSid(sidType, nil)
    }
    
    // Creates a SID for a well-known predefined alias, generally using the constants of the form
    // Win*Sid, for the domain specified by the domainSid parameter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/go/printer/testdata/parser.go

    	case *ast.TypeAssertExpr:
    		if t.Type == nil {
    			// the form X.(type) is only allowed in type switch expressions
    			p.errorExpected(x.Pos(), "expression")
    			x = &ast.BadExpr{x.Pos(), x.End()}
    		}
    	case *ast.CallExpr:
    	case *ast.StarExpr:
    	case *ast.UnaryExpr:
    		if t.Op == token.RANGE {
    			// the range operator is only allowed at the top of a for statement
    			p.errorExpected(x.Pos(), "expression")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    // used.  For example, Conv2D in TFLite which uses OHWI data format for filters
    // is not supported in TensorFlow because TensorFlow requires filters in the
    // HWIO data format.
    //
    // Motivation to prepare for the TFLite legalization before the actual
    // legalization is to exploit constant folding opportunities in any newly
    // created ops by leveraging constant folding support for the TensorFlow ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top