Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/time/time.go

    // friends.
    //
    // Note that the Go == operator compares not just the time instant but
    // also the [Location] and the monotonic clock reading. See the
    // documentation for the Time type for a discussion of equality
    // testing for Time values.
    //
    // For debugging, the result of t.String does include the monotonic
    // clock reading if present. If t != u because of different monotonic clock readings,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/testing/testing.go

    //	    }
    //	}
    //
    // For more detail, run "go help test" and "go help testflag".
    //
    // # Benchmarks
    //
    // Functions of the form
    //
    //	func BenchmarkXxx(*testing.B)
    //
    // are considered benchmarks, and are executed by the "go test" command when
    // its -bench flag is provided. Benchmarks are run sequentially.
    //
    // For a description of the testing flags, see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    	// +optional
    	Port int32
    }
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    type MatchCondition struct {
    	// Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    	// as well as providing an identifier for logging purposes. A good name should be descriptive of
    	// the associated expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      optional string warning = 3;
    }
    
    // MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
      // as well as providing an identifier for logging purposes. A good name should be descriptive of
      // the associated expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. common/scripts/metallb-native.yaml

                      for IPv6 addresses.
                    format: int32
                    type: integer
                  communities:
                    description: The BGP communities to be associated with the announcement.
                      Each item can be a standard community of the form 1234:1234, a large
                      community of the form large:1234:1234:1234 or the name of an alias
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top