Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for CL (0.04 sec)

  1. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            new TypeToken<StringForFirstTypeArg<Integer>>() {};
        assertTrue(subtype.isSubtypeOf(supertype));
    
        // TODO(benyu): This should check equality to an expected value, see discussion in cl/98674873
        TypeToken<?> unused = supertype.getSubtype(subtype.getRawType());
      }
    
      public void testGetSubtype_baseClassWithNoTypeArgs() {
        class SingleGenericExtendsBase<T> extends Base {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      EXPECT_EQ(clusters["test/z"], "");
    }
    
    // Note, this relies on other implementation details to test the
    // specific heuristic we care about here, so other changes might be at fault if
    // this CL breaks. What we care about is that if a ShapeConsumingOp can be
    // connected with a producer or consumer and cannot be clustered with both, it
    // should be clustered with the producer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            new TypeToken<StringForFirstTypeArg<Integer>>() {};
        assertTrue(subtype.isSubtypeOf(supertype));
    
        // TODO(benyu): This should check equality to an expected value, see discussion in cl/98674873
        TypeToken<?> unused = supertype.getSubtype(subtype.getRawType());
      }
    
      public void testGetSubtype_baseClassWithNoTypeArgs() {
        class SingleGenericExtendsBase<T> extends Base {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    	mu.Lock()
    	go func() {
    		awaitBlockedGoroutine(t, "sync.Cond.Wait", "blockCond", 1)
    		mu.Lock()
    		c.Signal()
    		mu.Unlock()
    	}()
    	c.Wait()
    	mu.Unlock()
    }
    
    // See http://golang.org/cl/299991.
    func TestBlockProfileBias(t *testing.T) {
    	rate := int(1000) // arbitrary value
    	runtime.SetBlockProfileRate(rate)
    	defer runtime.SetBlockProfileRate(0)
    
    	// simulate blocking events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    		return true
    
    	}
    	return false
    }
    
    func isInlinableMemclr(c *Config, sz int64) bool {
    	if sz < 0 {
    		return false
    	}
    	// TODO: expand this check to allow other architectures
    	// see CL 454255 and issue 56997
    	switch c.arch {
    	case "amd64", "arm64":
    		return true
    	case "ppc64le", "ppc64":
    		return sz < 512
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    // anyway, so the failure will not be missed and would be
    // awkward to try to wedge into the JSON stream.
    //
    // In fuzz mode, we only allow a single package for now
    // (see CL 350156 and https://golang.org/issue/46312),
    // so there is no possibility of scrolling off and no need
    // to print the final status.
    func printExitStatus(b *work.Builder, ctx context.Context, a *work.Action) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/compress/flate/testdata/huffman-rand-max.in

    d�#)���<�߳�O�GU��/�nCL��|�_L|��0��"G�Mk�$�,׾nz�����j��0%�t�Kj���Nv�I�_��c<~~ O�f��.��Hˮ�<���ՍBm����@��G�N�ώۦ� 	�zf�)��82`�T�c�H��c3n�e��ƺzCq�hi���E�kѻp��Ѵd���b�<F�1NAw�燢n�k
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
  8. src/reflect/type.go

    	// presented by a reflect.Type. It would be nice to avoid,
    	// at least in the common cases, but we need to make sure
    	// that misbehaving clients of reflect cannot affect other
    	// uses of reflect. One possibility is CL 5371098, but we
    	// postponed that ugliness until there is a demonstrated
    	// need for the performance. This is issue 2320.
    	f.Index = []int{i}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top