Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 299 for fecero (0.11 sec)

  1. android/guava-tests/test/com/google/common/io/CharStreamsTest.java

            // with a len of 0 forever
            if (len <= 0) {
              fail("read called with a len of " + len);
            }
            // read fewer than the max number of chars to read
            // shouldn't be a problem unless the buffer is shrinking each call
            return in.read(cbuf, off, Math.max(len - 1024, 0));
          }
        };
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/CharStreamsTest.java

            // with a len of 0 forever
            if (len <= 0) {
              fail("read called with a len of " + len);
            }
            // read fewer than the max number of chars to read
            // shouldn't be a problem unless the buffer is shrinking each call
            return in.read(cbuf, off, Math.max(len - 1024, 0));
          }
        };
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/extensions.kt

            param("env.ANDROID_SDK_ROOT", os.androidHome)
            param("env.GRADLE_INTERNAL_REPO_URL", "%gradle.internal.repository.url%")
            if (os == Os.MACOS) {
                // Use fewer parallel forks on macOs, since the agents are not very powerful.
                param("maxParallelForks", "2")
            }
            if (os == Os.LINUX || os == Os.MACOS) {
                param("env.LC_ALL", "en_US.UTF-8")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  4. src/crypto/x509/cert_pool.go

    type lazyCert struct {
    	// rawSubject is the Certificate.RawSubject value.
    	// It's the same as the CertPool.byName key, but in []byte
    	// form to make CertPool.Subjects (as used by crypto/tls) do
    	// fewer allocations.
    	rawSubject []byte
    
    	// constraint is a function to run against a chain when it is a candidate to
    	// be added to the chain. This allows adding arbitrary constraints that are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/image/draw/draw.go

    			// dr |= dr << 8
    			// and similarly for dg, db and da, but instead we multiply a
    			// (which is a 16-bit color, ranging in [0,65535]) by 0x101.
    			// This yields the same result, but is fewer arithmetic operations.
    			a := (m - (sa * ma / m)) * 0x101
    
    			d[0] = uint8((dr*a + sy*ma) / m >> 8)
    			d[1] = uint8((dg*a + sy*ma) / m >> 8)
    			d[2] = uint8((db*a + sy*ma) / m >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Table.java

     * the columns. The reverse is also available, associating a column with a row key / value map. Note
     * that, in some implementations, data access by column key may have fewer supported operations or
     * worse performance than data access by row key.
     *
     * <p>The methods returning collections or maps always return views of the underlying table.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TopKSelector.java

        while (elements.hasNext()) {
          offer(elements.next());
        }
      }
    
      /**
       * Returns the top {@code k} elements offered to this {@code TopKSelector}, or all elements if
       * fewer than {@code k} have been offered, in the order specified by the factory used to create
       * this {@code TopKSelector}.
       *
       * <p>The returned list is an unmodifiable copy and will not be affected by further changes to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. src/compress/flate/huffman_code.go

    			count++
    		} else {
    			h.codes[i].len = 0
    		}
    	}
    
    	list = list[:count]
    	if count <= 2 {
    		// Handle the small cases here, because they are awkward for the general case code. With
    		// two or fewer literals, everything has bit length 1.
    		for i, node := range list {
    			// "list" is in order of increasing literal value.
    			h.codes[node.literal].set(uint16(i), 1)
    		}
    		return
    	}
    	h.lfs.sort(list)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta1/horizontalpodautoscaler.go

    // ExtractHorizontalPodAutoscaler provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    // applied if another fieldManager has updated or force applied any of the previously applied fields.
    // Experimental!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/coordination/v1beta1/lease.go

    // lease must be a unmodified Lease API object that was retrieved from the Kubernetes API.
    // ExtractLease provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    // applied if another fieldManager has updated or force applied any of the previously applied fields.
    // Experimental!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.4K bytes
    - Viewed (0)
Back to top