Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 134 for Grappler (0.36 sec)

  1. cmd/bucket-handlers_test.go

    package cmd
    
    import (
    	"bytes"
    	"encoding/xml"
    	"fmt"
    	"io"
    	"net/http"
    	"net/http/httptest"
    	"strconv"
    	"testing"
    
    	"github.com/minio/minio/internal/auth"
    )
    
    // Wrapper for calling RemoveBucket HTTP handler tests for both Erasure multiple disks and single node setup.
    func TestRemoveBucketHandler(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

         * if the wrapper function fails, the inner closeable is closed before
         * the exception is thrown.
         *
         * @param innerSupplier the supplier that produces the inner closeable that is to be safely wrapped
         * @param unsafeWrapper a wrapping function that is potentially unsafe
         * @return the result of the wrapper function
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/func.go

    	ABI obj.ABI
    	// ABIRefs is the set of ABIs by which this function is referenced.
    	// For ABIs other than this function's definition ABI, the
    	// compiler generates ABI wrapper functions. This is only tracked
    	// within a package.
    	ABIRefs obj.ABISet
    
    	NumDefers  int32 // number of defer calls in the function
    	NumReturns int32 // number of explicit returns in the function
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. pkg/volume/git_repo/git_repo_test.go

    	}
    
    	// gitRepo volume should create its own empty wrapper path
    	podWrapperMetadataDir := fmt.Sprintf("%v/pods/poduid/plugins/kubernetes.io~empty-dir/wrapped_%v", rootDir, scenario.vol.Name)
    
    	if _, err := os.Stat(podWrapperMetadataDir); err != nil {
    		if os.IsNotExist(err) {
    			allErrs = append(allErrs,
    				fmt.Errorf("SetUp() failed, empty-dir wrapper path is not created: %s", podWrapperMetadataDir))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. settings.gradle.kts

            subproject("serialization")
            subproject("service-provider")
            subproject("time")
            subproject("tooling-api-provider")
            subproject("wrapper-main")
            subproject("wrapper-shared")
        }
    
        // Core Configuration Module
        module("core-configuration") {
            subproject("api-metadata")
            subproject("base-services-groovy")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/runtime/tracestack.go

    // If pc is a wrapper, it returns the PC of the wrapped function. Otherwise it
    // returns pc.
    func startPCForTrace(pc uintptr) uintptr {
    	f := findfunc(pc)
    	if !f.valid() {
    		return pc // may happen for locked g in extra M since its pc is 0.
    	}
    	w := funcdata(f, abi.FUNCDATA_WrapInfo)
    	if w == nil {
    		return pc // not a wrapper
    	}
    	return f.datap.textAddr(*(*uint32)(w))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

        }
    
        /**
         * We want to unwrap a SUBSTITUTION_OVERRIDE wrapper if it doesn't affect the declaration's signature in any way. If the signature
         * is somehow changed, then we want to keep the wrapper.
         *
         * Such substitute overrides happen because of inheritance.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

        Set<String> getRootProjectImplicitTasks() {
            final rootOnlyTasks
            if (targetVersion >= GradleVersion.version("8.8")) {
                rootOnlyTasks = ['init', 'wrapper', 'updateDaemonJvm']
            } else {
                rootOnlyTasks = ['init', 'wrapper']
            }
            return implicitTasks + rootOnlyTasks + rootProjectImplicitInvisibleTasks
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

    }
    
    private fun ConeKotlinType.simplifyType(
        session: FirSession,
        useSitePosition: PsiElement,
        visited: MutableSet<ConeKotlinType> = mutableSetOf(),
    ): ConeKotlinType {
        // E.g., Wrapper<T> : Comparable<Wrapper<T>>
        if (!visited.add(this)) return this
    
        val substitutor = AnonymousTypesSubstitutor(session)
        val visibilityForApproximation = useSitePosition.visibilityForApproximation
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    The initialization scripts come bundled with the distribution and are applied every time the build is run.
    Developers only need to point their checked-in <<gradle_wrapper.adoc#gradle_wrapper_reference,Wrapper>> files to the URL of the custom Gradle distribution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top