Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for wastage (0.16 sec)

  1. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    impinging of Light on the solid or impervious parts of Bodies, as is commonly believed._ This will appear by the following Considerations. First, That in the passage of Light out of Glass into Air there is a Reflexion as strong as in its passage out of Air into Glass, or rather a little stronger, and by many degrees stronger than in its passage out of Glass into Water. And it seems not probable that Air should have more strongly reflecting parts than Water or Glass. But if that should possibly be supposed,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"martial_arts_uniform":                 "\U0001f94b",
    	"martinique":                           "\U0001f1f2\U0001f1f6",
    	"mask":                                 "\U0001f637",
    	"massage":                              "\U0001f486",
    	"massage_man":                          "\U0001f486\u200d\u2642\ufe0f",
    	"massage_woman":                        "\U0001f486\u200d\u2640\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    door about fifteen inches high:  she tried the little golden key
    in the lock, and to her great delight it fitted!
    
      Alice opened the door and found that it led into a small
    passage, not much larger than a rat-hole:  she knelt down and
    looked along the passage into the loveliest garden you ever saw.
    How she longed to get out of that dark hall, and wander about
    among those beds of bright flowers and those cool fountains, but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    door about fifteen inches high:  she tried the little golden key
    in the lock, and to her great delight it fitted!
    
      Alice opened the door and found that it led into a small
    passage, not much larger than a rat-hole:  she knelt down and
    looked along the passage into the loveliest garden you ever saw.
    How she longed to get out of that dark hall, and wander about
    among those beds of bright flowers and those cool fountains, but
    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. pkg/scheduler/schedule_one_test.go

    			pod:       st.MakePod().Name("test-prefilter").UID("test-prefilter").Obj(),
    			wantNodes: sets.New("node2"),
    			// since this case has no score plugin, we'll only try to find one node in Filter stage
    			wantEvaluatedNodes: ptr.To[int32](1),
    		},
    		{
    			name: "test prefilter plugin returning non-intersecting nodes",
    			registerPlugins: []tf.RegisterPluginFunc{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                publicMethod("isImmutable", RETURN_BOOLEAN, methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                    // Could return true if all the read only properties point to immutable objects, but at this stage there are no such types supported
                    _LDC(mutablePropertySize == 0 && readOnlyPropertySize == 0);
                    _IRETURN();
                }});
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    	}
    
    	// queue replication heal in a goroutine to avoid holding up mrf save routine
    	go func() {
    		for vID, e := range mrfRec.Entries {
    			ctx, cancel := context.WithTimeout(p.ctx, time.Second) // Do not waste more than a second on this.
    
    			oi, err := p.objLayer.GetObjectInfo(ctx, e.Bucket, e.Object, ObjectOptions{
    				VersionID: vID,
    			})
    			cancel()
    			if err != nil {
    				continue
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // versions. Here we put a 16-byte dummy string as a placeholder. We choose
      // 16-byte because it's the alignment of buffers in flatbuffer, so it won't
      // cause any waste of space if the actual string is shorter than 16 bytes.
      constexpr std::size_t kByteStringSize = 16;
      metadata.push_back(
          BuildMetadata("min_runtime_version", std::string(kByteStringSize, '\0')));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy endpoint-2OCDJSZQ-ns3/svc3/tcp/p80__10.0.3.1/80 meta l4proto tcp dnat to 10.0.3.1:80
    		`)
    	assertNFTablesTransactionEqual(t, getLine(), expected, nft.Dump())
    
    	// Fake the passage of time and confirm that the stale chains get deleted.
    	ageStaleChains()
    	fp.syncProxyRules()
    	expected = baseRules + dedent.Dedent(`
    		add element ip kube-proxy cluster-ips { 172.30.0.41 }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	w.Header().Set("Content-Length", "0")
    	if r.ContentLength != 0 {
    		// Read up to 4KB of OPTIONS body (as mentioned in the
    		// spec as being reserved for future use), but anything
    		// over that is considered a waste of server resources
    		// (or an attack) and we abort and close the connection,
    		// courtesy of MaxBytesReader's EOF behavior.
    		mb := MaxBytesReader(w, r.Body, 4<<10)
    		io.Copy(io.Discard, mb)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top