Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 264 for stinky (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionSelector.java

         *
         * @return true if this selector can short-circuit
         */
        boolean canShortCircuitWhenVersionAlreadyPreselected();
    
        /**
         * Returns this selector as a string.
         *
         * @return a stringy representation of this selector
         */
        String getSelector();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/StatementLabelsIntegrationTest.groovy

            failure.assertThatCause(CoreMatchers.containsString("build file '${buildFile}': 2: Statement labels may not be used in build scripts."))
    
            // try again to make sure that warning sticks if build script is cached
            fails("tasks")
            failure.assertHasFileName("Build file '${buildFile}'")
            failure.assertHasLineNumber(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 21 07:18:30 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_profiler.cc

    }
    
    void RegisterExecutionForCluster(
        const NameAttrList& function,
        DeviceCompilationProfiler::ClusterCompileStats* stats) {
      ++stats->execution_count;
    
      // The is_megamorphic bit is "sticky".  We assume clusters that have been
      // observed to be megamorphic once stay megamorphic forever.
      if (!stats->is_megamorphic &&
          ShouldBeMegamorphic(stats->compile_count, stats->execution_count)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. test/escape_field.go

    package escape
    
    var sink interface{}
    
    type X struct {
    	p1 *int
    	p2 *int
    	a  [2]*int
    }
    
    type Y struct {
    	x X
    }
    
    func field0() {
    	i := 0 // ERROR "moved to heap: i$"
    	var x X
    	x.p1 = &i
    	sink = x.p1
    }
    
    func field1() {
    	i := 0 // ERROR "moved to heap: i$"
    	var x X
    	// BAD: &i should not escape
    	x.p1 = &i
    	sink = x.p2
    }
    
    func field3() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authn_audit_test.go

    	req = withTestContext(req, nil, nil)
    	req.SetBasicAuth("username", "password")
    	handler.ServeHTTP(httptest.NewRecorder(), req)
    
    	if len(sink.events) != 1 {
    		t.Fatalf("Unexpected number of audit events generated, expected 1, got: %d", len(sink.events))
    	}
    	ev := sink.events[0]
    	if ev.ResponseStatus.Code != http.StatusUnauthorized {
    		t.Errorf("Unexpected response code, expected unauthorized, got %d", ev.ResponseStatus.Code)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 12 21:42:41 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/PrimitiveSink.java

      /** Puts a short into this sink. */
      @CanIgnoreReturnValue
      PrimitiveSink putShort(short s);
    
      /** Puts an int into this sink. */
      @CanIgnoreReturnValue
      PrimitiveSink putInt(int i);
    
      /** Puts a long into this sink. */
      @CanIgnoreReturnValue
      PrimitiveSink putLong(long l);
    
      /** Puts a float into this sink. */
      @CanIgnoreReturnValue
      PrimitiveSink putFloat(float f);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit.go

    // attributes and audit policy. Logs are emitted to the audit sink to
    // process events. If sink or audit policy is nil, no decoration takes place.
    func WithAudit(handler http.Handler, sink audit.Sink, policy audit.PolicyRuleEvaluator, longRunningCheck request.LongRunningRequestCheck) http.Handler {
    	if sink == nil || policy == nil {
    		return handler
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. test/fixedbugs/issue21048.go

    	_ [2]byte
    	e [2]int32 // offset: 28
    }
    
    var Source, Sink T
    
    func newT() T {
    	return T{
    		a: [2]byte{1, 2},
    		b: [2]uint16{1, 2},
    		c: [2]uint32{1, 2},
    		d: [2]int16{1, 2},
    		e: [2]int32{1, 2},
    	}
    }
    
    //go:noinline
    func moves() {
    	Sink.a = Source.a
    	Sink.b = Source.b
    	Sink.c = Source.c
    	Sink.d = Source.d
    	Sink.e = Source.e
    }
    
    //go:noinline
    func loads() *T {
    	t := newT()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 19 14:22:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  9. test/fixedbugs/notinheap.go

    //go:notinheap
    type t3 byte
    
    //go:notinheap
    type t4 rune
    
    var sink interface{}
    
    func i() {
    	sink = new(t1)                     // no error
    	sink = (*t2)(new(t1))              // ERROR "cannot convert(.|\n)*t2 is incomplete \(or unallocatable\)"
    	sink = (*t2)(new(struct{ x int })) // ERROR "cannot convert(.|\n)*t2 is incomplete \(or unallocatable\)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 17:46:15 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/okio/LoggingFilesystem.kt

      override fun delete(
        path: Path,
        mustExist: Boolean,
      ) {
        log("delete($path)")
    
        super.delete(path, mustExist)
      }
    
      override fun sink(
        path: Path,
        mustCreate: Boolean,
      ): Sink {
        log("sink($path)")
    
        return super.sink(path, mustCreate)
      }
    
      override fun source(file: Path): Source {
        log("source($file)")
    
        return super.source(file)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top