Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 538 for cLower (0.15 sec)

  1. guava/src/com/google/common/math/IntMath.java

      /**
       * Returns the smallest power of two greater than or equal to {@code x}. This is equivalent to
       * {@code checkedPow(2, log2(x, CEILING))}.
       *
       * @throws IllegalArgumentException if {@code x <= 0}
       * @throws ArithmeticException of the next-higher power of two is not representable as an {@code
       *     int}, i.e. when {@code x > 2^30}
       * @since 20.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/lower-static-tensor-list.mlir

    // RUN: tf-opt "-tfl-lower-static-tensor-list=allow-tensorlist-pass-through default-to-single-batch" -split-input-file %s | FileCheck %s
    
    // -----
    
    // CHECK-LABEL: tensorlistConst
    func.func @tensorlistConst(%arg0 : tensor<1xi32>) -> tensor<2x3xi32> {
      // CHECK-DAG: %[[ELEMENT0:.*]] = "tf.Const"() <{value = dense<[0, 1, 2]> : tensor<3xi32>}> : () -> tensor<3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 39.9K bytes
    - Viewed (0)
  3. cmd/metacache-stream.go

    				continue
    			}
    		}
    	}()
    
    	return objs, nil
    }
    
    // Close and release resources.
    func (w *metacacheWriter) Close() error {
    	if w == nil || w.closer == nil {
    		return nil
    	}
    	w.streamWg.Wait()
    	err := w.closer()
    	w.closer = nil
    	return err
    }
    
    // Reset and start writing to new writer.
    // Close must have been called before this.
    func (w *metacacheWriter) Reset(out io.Writer) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. src/net/listen_test.go

    			}
    			if err := checkMulticastListener(cs[0], tt.gaddr.IP); err != nil {
    				closer(cs)
    				t.Fatal(err)
    			}
    			if cs[1], err = ListenMulticastUDP(tt.net, ifi, tt.gaddr); err != nil {
    				closer(cs)
    				t.Fatal(err)
    			}
    			if err := checkMulticastListener(cs[1], tt.gaddr.IP); err != nil {
    				closer(cs)
    				t.Fatal(err)
    			}
    			closer(cs)
    		}
    	}
    }
    
    var ipv6MulticastListenerTests = []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/test.go

    }
    
    {{if .Cover}}
    
    // Only updated by init functions, so no need for atomicity.
    var (
    	coverCounters = make(map[string][]uint32)
    	coverBlocks = make(map[string][]testing.CoverBlock)
    )
    
    func init() {
    	{{range $i, $p := .Cover.Vars}}
    	{{range $file, $cover := $p.Vars}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. src/unicode/letter_test.go

    			t.Errorf("ToLower(U+%04X) disagrees with To(Lower)", i)
    		}
    		if To(TitleCase, i) != ToTitle(i) {
    			t.Errorf("ToTitle(U+%04X) disagrees with To(Title)", i)
    		}
    	}
    }
    
    func TestTurkishCase(t *testing.T) {
    	lower := []rune("abcçdefgğhıijklmnoöprsştuüvyz")
    	upper := []rune("ABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZ")
    	for i, l := range lower {
    		u := upper[i]
    		if TurkishCase.ToLower(l) != l {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/CloserTest.java

        Closer closer = new Closer(suppressor);
    
        TestCloseable c1 = closer.register(TestCloseable.normal());
        TestCloseable c2 = closer.register(TestCloseable.normal());
    
        IOException exception = new IOException();
    
        try {
          try {
            throw exception;
          } catch (Throwable e) {
            throw closer.rethrow(e);
          } finally {
            closer.close();
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/math/bits/bits.go

    	//
    	// x & -x leaves only the right-most bit set in the word. Let k be the
    	// index of that bit. Since only a single bit is set, the value is two
    	// to the power of k. Multiplying by a power of two is equivalent to
    	// left shifting, in this case by k bits. The de Bruijn (64 bit) constant
    	// is such that all six bit, consecutive substrings are distinct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/Files.java

        }
    
        @Override
        public byte[] read() throws IOException {
          Closer closer = Closer.create();
          try {
            FileInputStream in = closer.register(openStream());
            return ByteStreams.toByteArray(in, in.getChannel().size());
          } catch (Throwable e) {
            throw closer.rethrow(e);
          } finally {
            closer.close();
          }
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_client_test.go

    		t.Logf("test case: %s", tc.name)
    
    		fakeCloser := fake.NewCloser(t)
    		client := &csiDriverClient{
    			driverName: "Fake Driver Name",
    			nodeV1ClientCreator: func(addr csiAddr, m *MetricsManager) (csipbv1.NodeClient, io.Closer, error) {
    				nodeClient := fake.NewNodeClient(false /* stagingCapable */)
    				nodeClient.SetNextError(tc.err)
    				nodeClient.SetNodeGetInfoResp(&csipbv1.NodeGetInfoResponse{
    					NodeId:            tc.expectedNodeID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top