Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for beust (0.1 sec)

  1. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="com.beust" name="jcommander" version="1.35">
             <artifact name="jcommander-1.35.jar">
                <pgp value="F60DB6893AB3825459528EADCC54B93C018511A4"/>
             </artifact>
          </component>
          <component group="com.beust" name="jcommander" version="1.72">
             <artifact name="jcommander-1.72.jar">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    		}
    
    		// Put the spill in the best block we found.
    		spill.Block = best
    		spill.AddArg(bestArg)
    		if best == v.Block && !mustBeFirst(v.Op) {
    			// Place immediately after v.
    			after[v.ID] = append(after[v.ID], spill)
    		} else {
    			// Place at the start of best block.
    			start[best.ID] = append(start[best.ID], spill)
    		}
    	}
    
    	// Insert spill instructions into the block schedules.
    	var oldSched []*Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    			t.Errorf("Usage Used: Key: %v, Expected: %v, Actual: %v", k, expectedValue, actualValue)
    		}
    	}
    }
    
    // TestAdmitBelowBestEffortQuotaLimit creates a best effort and non-best effort quota.
    // It verifies that best effort pods are properly scoped to the best effort quota document.
    func TestAdmitBelowBestEffortQuotaLimit(t *testing.T) {
    	resourceQuotaBestEffort := &corev1.ResourceQuota{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    This way, module boundaries stay in place, but the tests themselves become part of the module under test and can then access the module's internals.
    
    For which uses cases this is relevant and how this is best done is a topic of discussion.
    There is no general best approach at the moment.
    Thus, there is no special support for this in Gradle right now.
    
    You can however, setup module patching for tests like this:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	// information or if Certificates is empty.
    	//
    	// If GetCertificate is nil or returns nil, then the certificate is
    	// retrieved from NameToCertificate. If NameToCertificate is nil, the
    	// best element of Certificates will be used.
    	//
    	// Once a Certificate is returned it should not be modified.
    	GetCertificate func(*ClientHelloInfo) (*Certificate, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

     *      Best for small tables or for complex tables for tables with cells that span
     *      rows and columns, when the "striped" style does not work well.
     *
     * striped:
     *      Borders around the table and vertical borders between cells, striped rows,
     *      vertical margins, styled caption.
     *      Best for tables that have a header row, and a body containing a series of simple rows.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    		return 0
    	}
    
    	switch c := hc.cipher.(type) {
    	case cipher.Stream:
    		return 0
    	case aead:
    		return c.explicitNonceLen()
    	case cbcMode:
    		// TLS 1.1 introduced a per-record explicit IV to fix the BEAST attack.
    		if hc.version >= VersionTLS11 {
    			return c.BlockSize()
    		}
    		return 0
    	default:
    		panic("unknown cipher type")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    		// ~258MB, so this isn't too bad. (We could reserve a
    		// smaller amount of space up front if this is a
    		// problem.)
    		//
    		// 2. We hint the heap to start right above the end of
    		// the binary so we have the best chance of keeping it
    		// contiguous.
    		//
    		// 3. We try to stake out a reasonably large initial
    		// heap reservation.
    
    		const arenaMetaSize = (1 << arenaBits) * unsafe.Sizeof(heapArena{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputDoesNotContain("Providing metadata for group:projectB:2.2")
            outputDoesNotContain("Providing metadata for group:projectB:1.1")
    
            when:
            run '--stop'
            // bust the artifact cache because we don't want to fall into the smart behavior
            // of reusing metadata from cache for a different repository
            getUserHomeCacheDir().file(CacheLayout.MODULES.getKey()).deleteDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/CacheBuilder.java

       * building caches whose key or value types are incompatible with the types accepted by the
       * weigher already provided; the {@code CacheBuilder} type cannot do this. For best results,
       * simply use the standard method-chaining idiom, as illustrated in the documentation at top,
       * configuring a {@code CacheBuilder} and building your {@link Cache} all in a single statement.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top