Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 220 for Grappler (0.49 sec)

  1. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #       (Template Engines) for details.
    #
    #       (An example invocation of this template is from
    #       https://github.com/gradle/gradle/blob/HEAD/subprojects/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java
    #       within the Gradle project, which builds "gradlew".)
    # */ %>
    #       You can find Gradle at https://github.com/gradle/gradle/.
    #
    ##############################################################################
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

                        failures.asMap().entrySet().stream().filter(entry -> {
                            Collection<RepositoryAwareVerificationFailure> value = entry.getValue();
                            return value.stream().anyMatch(wrapper -> wrapper.getFailure().isFatal());
                        }).collect(ImmutableMap.toImmutableMap(Map.Entry::getKey, Map.Entry::getValue));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

                    value = item.getString();
                }
                haveValue = true;
            }
            if (request instanceof final MultipartRequestWrapper wrapper) {
                wrapper.setParameter(name, value);
            }
            final String[] oldArray = elementsText.get(name);
            final String[] newArray;
            if (oldArray != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top