Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,029 for cake (0.06 sec)

  1. src/cmd/go/testdata/script/install_modcacherw_issue64282.txt

    # the requested package has been downloaded and checked for toolchain
    # upgrades.
    
    
    ! go install -cake=delicious -modcacherw example.com/printversion@v0.1.0
    stderr '^flag provided but not defined: -cake$'
    	# Because the -modcacherw flag was set, we should be able to modify the contents
    	# of a directory within the module cache.
    cp $WORK/extraneous.txt $GOPATH/pkg/mod/example.com/printversion@v0.1.0/extraneous_file.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 17:53:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. internal/s3select/json/testdata/4.json

    {
    	"id": "0001",
    	"type": "donut",
    	"name": "Cake",
    	"ppu": 0.55,
    	"batters":
    		{
    			"batter":
    				[
    					{ "id": "1001", "type": "Regular" },
    					{ "id": "1002", "type": "Chocolate" },
    					{ "id": "1003", "type": "Blueberry" },
    					{ "id": "1004", "type": "Devil's Food" }
    				]
    		},
    	"topping":
    		[
    			{ "id": "5001", "type": "None" },
    			{ "id": "5002", "type": "Glazed" },
    			{ "id": "5005", "type": "Sugar" },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 607 bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"busts_in_silhouette":                  "\U0001f465",
    	"butter":                               "\U0001f9c8",
    	"butterfly":                            "\U0001f98b",
    	"cactus":                               "\U0001f335",
    	"cake":                                 "\U0001f370",
    	"calendar":                             "\U0001f4c6",
    	"call_me_hand":                         "\U0001f919",
    	"calling":                              "\U0001f4f2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    silence.
    
      Alice noticed with some surprise that the pebbles were all
    turning into little cakes as they lay on the floor, and a bright
    idea came into her head.  `If I eat one of these cakes,' she
    thought, `it's sure to make SOME change in my size; and as it
    can't possibly make me larger, it must make me smaller, I
    suppose.'
    
      So she swallowed one of the cakes, and was delighted to find
    that she began shrinking directly.  As soon as she was small
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    silence.
    
      Alice noticed with some surprise that the pebbles were all
    turning into little cakes as they lay on the floor, and a bright
    idea came into her head.  `If I eat one of these cakes,' she
    thought, `it's sure to make SOME change in my size; and as it
    can't possibly make me larger, it must make me smaller, I
    suppose.'
    
      So she swallowed one of the cakes, and was delighted to find
    that she began shrinking directly.  As soon as she was small
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/case.mlir

          %outputs_0, %control_1 = tf_executor.island wraps "tf.Const"() {device = "", value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. pkg/proxy/conntrack/fake.go

    func NewFake() *FakeInterface {
    	fake := &FakeInterface{}
    	fake.Reset()
    	return fake
    }
    
    // Reset clears fake's sets/maps
    func (fake *FakeInterface) Reset() {
    	fake.ClearedIPs = sets.New[string]()
    	fake.ClearedPorts = sets.New[int]()
    	fake.ClearedNATs = make(map[string]string)
    	fake.ClearedPortNATs = make(map[int]string)
    }
    
    // ClearEntriesForIP is part of Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 04:15:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/audit/fake/fake.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package fake
    
    import (
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/audit"
    )
    
    var _ audit.Backend = &Backend{}
    
    // Backend is a fake audit backend for testing purposes.
    type Backend struct {
    	OnRequest func(events []*auditinternal.Event)
    }
    
    // Run does nothing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 16 09:32:49 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  9. pkg/util/iptables/testing/fake.go

    		return err
    	}
    
    	backupChains := make([]Chain, len(oldTable.Chains))
    	copy(backupChains, oldTable.Chains)
    
    	// Update internal state
    	if flush == iptables.FlushTables {
    		oldTable.Chains = make([]Chain, 0, len(newTable.Chains))
    	}
    	for _, newChain := range newTable.Chains {
    		oldChain, _ := f.Dump.GetChain(newTable.Name, newChain.Name)
    		switch {
    		case oldChain == nil && newChain.Deleted:
    			// no-op
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. pkg/api/service/testing/make.go

    func SetSessionAffinity(affinity api.ServiceAffinity) Tweak {
    	return func(svc *api.Service) {
    		svc.Spec.SessionAffinity = affinity
    		switch affinity {
    		case api.ServiceAffinityNone:
    			svc.Spec.SessionAffinityConfig = nil
    		case api.ServiceAffinityClientIP:
    			timeout := int32(10)
    			svc.Spec.SessionAffinityConfig = &api.SessionAffinityConfig{
    				ClientIP: &api.ClientIPConfig{
    					TimeoutSeconds: &timeout,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top