Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 993 for _ignored (0.55 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

      // Attributes are not in the registered attributes set will be ignored.
      for (auto& attr : inst->getAttrs()) {
        if (registered_attrs.find(attr.getName()) == registered_attrs.end()) {
          attrs_to_ignore->insert(
              absl::string_view(attr.getName().data(), attr.getName().size()));
        }
      }
      return absl::OkStatus();
    }
    
    // Collects all attribute names to ignore in an MLIR operation when exporting to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

                        phaseHasMoreProgress(startEvent);
                    } else if (startEvent.getBuildOperationCategory() == BuildOperationCategory.CONFIGURE_PROJECT && currentPhase == Phase.Configuring) {
                        // Any configuring event received from nested or buildSrc builds before the root build starts configuring is ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
Back to top