Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 131 for locations (0.15 sec)

  1. android/guava/src/com/google/common/base/Preconditions.java

     * if/throw idiom instead.
     *
     * <p>Depending on your message arguments, memory may be allocated for boxing and varargs array
     * creation. However, the methods of this class have a large number of overloads that prevent such
     * allocations in many common cases.
     *
     * <p>The message string is not formatted unless the exception will be thrown, so the cost of the
     * string formatting itself should not be a concern.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. src/strings/strings_test.go

    			t.Fatalf("'s' at %d; want 2", i)
    		}
    		if i := IndexRune(haystack, '世'); i != 4 {
    			t.Fatalf("'世' at %d; want 4", i)
    		}
    	})
    	if allocs != 0 && testing.CoverMode() == "" {
    		t.Errorf("expected no allocations, got %f", allocs)
    	}
    }
    
    const benchmarkString = "some_text=some☺value"
    
    func BenchmarkIndexRune(b *testing.B) {
    	if got := IndexRune(benchmarkString, '☺'); got != 14 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	Connect      OperationType = v1.Connect
    )
    
    // WebhookClientConfig contains the information to make a TLS
    // connection with the webhook
    type WebhookClientConfig struct {
    	// `url` gives the location of the webhook, in standard URL form
    	// (`scheme://host:port/path`). Exactly one of `url` or `service`
    	// must be specified.
    	//
    	// The `host` should not refer to a service running in the cluster; use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    			}
    		}
    		return
    	}
    	// Compute the amount of scan work we need to do to make the
    	// balance positive. When the required amount of work is low,
    	// we over-assist to build up credit for future allocations
    	// and amortize the cost of assisting.
    	assistWorkPerByte := gcController.assistWorkPerByte.Load()
    	assistBytesPerWork := gcController.assistBytesPerWork.Load()
    	debtBytes := -gp.gcAssistBytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // in an error message from the compiler used to compile this code.
    GTEST_API_ ::std::string FormatFileLocation(const char* file, int line);
    
    // Formats a file location for compiler-independent XML output.
    // Although this function is not platform dependent, we put it next to
    // FormatFileLocation in order to contrast the two functions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // in an error message from the compiler used to compile this code.
    GTEST_API_ ::std::string FormatFileLocation(const char* file, int line);
    
    // Formats a file location for compiler-independent XML output.
    // Although this function is not platform dependent, we put it next to
    // FormatFileLocation in order to contrast the two functions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      return %outputs_20 : tensor<?x?x4xf32>
    }
    
    // -----
    
    // Test a while to map_fn conversion in which the passed in max_iterations 
    // is not in typical location of %arg3 and there are identify chains in function bodies.
    
    // CHECK-LABEL: @map_while_cond_170
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  8. src/bufio/bufio_test.go

    		r.Seek(0, io.SeekStart)
    		buf.Reset(r)
    
    		_, err := buf.ReadString('\n')
    		if err != nil {
    			t.Fatal(err)
    		}
    	})
    	if allocs != 1 {
    		t.Errorf("Unexpected number of allocations, got %f, want 1", allocs)
    	}
    }
    
    func TestWriter(t *testing.T) {
    	var data [8192]byte
    
    	for i := 0; i < len(data); i++ {
    		data[i] = byte(' ' + i%('~'-' '))
    	}
    	w := new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    	// precomputing some number of those and cache for future reuse.
    	precomputedProbabilities []string
    
    	// The following buffers are used to reuse memory and avoid allocations
    	// that are significantly impacting performance.
    	iptablesData             *bytes.Buffer
    	existingFilterChainsData *bytes.Buffer
    	filterChains             proxyutil.LineBuffer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    	// Remove absolute paths from #line comments in the preamble.
    	// They aren't useful for people using the header file,
    	// and they mean that the header files change based on the
    	// exact location of GOPATH.
    	re := regexp.MustCompile(`(?m)^(#line\s+\d+\s+")[^"]*[/\\]([^"]*")`)
    	preamble := re.ReplaceAllString(p.Preamble, "$1$2")
    
    	fmt.Fprintf(fgcch, "/* Start of preamble from import \"C\" comments.  */\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top