Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,063 for _ignored (0.19 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //   3. If any matchCondition evaluates to an error (but none are FALSE):
      //      - If failurePolicy=Fail, reject the request
      //      - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
      //
      // +patchMergeKey=name
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=name
      // +optional
      repeated MatchCondition matchConditions = 12;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainCoexistWithCurrentOptionsIntegrationTest.groovy

        @Requires(IntegTestPreconditions.JavaHomeWithDifferentVersionAvailable)
        def "Given disabled auto-detection When using daemon toolchain Then option is ignored resolving with expected toolchain"() {
            given:
            def otherJvm = AvailableJavaHomes.differentVersion
            writeJvmCriteria(otherJvm)
            captureJavaHome()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pkg/controller/volume/ephemeral/controller.go

    		AddFunc: ec.enqueuePod,
    		// The pod spec is immutable. Therefore the controller can ignore pod updates
    		// because there cannot be any changes that have to be copied into the generated
    		// PVC.
    		// Deletion of the PVC is handled through the owner reference and garbage collection.
    		// Therefore pod deletions also can be ignored.
    	})
    	pvcInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/patches/patches.go

    		return nil, err
    	}
    
    	if len(patchFiles) > 0 {
    		fmt.Fprintf(output, "[patches] Found the following patch files: %v\n", patchFiles)
    	}
    	if len(ignoredFiles) > 0 {
    		fmt.Fprintf(output, "[patches] Ignored the following files: %v\n", ignoredFiles)
    	}
    
    	pm := &PatchManager{
    		patchSets:    patchSets,
    		knownTargets: knownTargets,
    		output:       output,
    	}
    	pathLock.Lock()
    	pathCache[path] = pm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

                 */
                val IGNORED: Any = Ignored.INSTANCE
    
                // Enum ensures that only one instance of INSTANCE exists and even deserialization
                // doesn't create a new one. The `object` has no such guarantee.
                private
                enum class Ignored {
                    INSTANCE
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/go/types/conversions.go

    	Tp, _ := T.(*TypeParam)
    
    	// "V and T have identical underlying types if tags are ignored
    	// and V and T are not type parameters"
    	if IdenticalIgnoreTags(Vu, Tu) && Vp == nil && Tp == nil {
    		return true
    	}
    
    	// "V and T are unnamed pointer types and their pointer base types
    	// have identical underlying types if tags are ignored
    	// and their pointer base types are not type parameters"
    	if V, ok := V.(*Pointer); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            expect:
            def module = registry.getModule("gradle-some-module")
            module.implementationClasspath.asFiles == [jarFile]
            module.runtimeClasspath.asFiles == [runtimeDep]
        }
    
        def "ignores external module jar from runtime ClassLoader"() {
            def classesDir = tmpDir.createDir("some-module/build/classes/java/main")
            def staticResourcesDir = tmpDir.createDir("some-module/src/main/resources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/signature.go

    	"fmt"
    	. "internal/types/errors"
    )
    
    // ----------------------------------------------------------------------------
    // API
    
    // A Signature represents a (non-builtin) function or method type.
    // The receiver is ignored when comparing signatures for identity.
    type Signature struct {
    	// We need to keep the scope in Signature (rather than passing it around
    	// and store it in the Func Object) because when type-checking a function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	}
    	return ""
    }
    
    // PostFormValue returns the first value for the named component of the POST,
    // PUT, or PATCH request body. URL query parameters are ignored.
    // PostFormValue calls [Request.ParseMultipartForm] and [Request.ParseForm] if necessary and ignores
    // any errors returned by these functions.
    // If key is not present, PostFormValue returns the empty string.
    func (r *Request) PostFormValue(key string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. src/path/filepath/match.go

    func glob(dir, pattern string, matches []string) (m []string, e error) {
    	m = matches
    	fi, err := os.Stat(dir)
    	if err != nil {
    		return // ignore I/O error
    	}
    	if !fi.IsDir() {
    		return // ignore I/O error
    	}
    	d, err := os.Open(dir)
    	if err != nil {
    		return // ignore I/O error
    	}
    	defer d.Close()
    
    	names, _ := d.Readdirnames(-1)
    	slices.Sort(names)
    
    	for _, n := range names {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top