Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,112 for _ignored (0.16 sec)

  1. src/go/types/eval.go

    // info. The expression may be an identifier denoting an uninstantiated generic
    // function or type.
    //
    // If pkg == nil, the [Universe] scope is used and the provided
    // position pos is ignored. If pkg != nil, and pos is invalid,
    // the package scope is used. Otherwise, pos must belong to the
    // package.
    //
    // An error is returned if pos is not within the package or
    // if the node cannot be type-checked.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    // +enum
    type FailurePolicyType string
    
    const (
    	// Ignore means that an error calling the webhook is ignored.
    	Ignore FailurePolicyType = "Ignore"
    	// Fail means that an error calling the webhook causes the admission to fail.
    	Fail FailurePolicyType = "Fail"
    )
    
    // MatchPolicyType specifies the type of match policy.
    // +enum
    type MatchPolicyType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  3. src/os/signal/doc.go

    on all systems.
    
    If the program was started with SIGHUP or SIGINT ignored, and [Notify]
    is called for either signal, a signal handler will be installed for
    that signal and it will no longer be ignored. If, later, [Reset] or
    [Ignore] is called for that signal, or [Stop] is called on all channels
    passed to Notify for that signal, the signal will once again be
    ignored. Reset will restore the system default behavior for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. okhttp/build.gradle.kts

           OsgiTest test class.
    
           - To enable the benefit of incremental builds, we can ask Gradle
           to ignore these two files when considering whether the classpath
           has changed. That is the purpose of this normalization block.
       */
        ignore("okhttp3/osgi/workspace/cnf/repo/index.xml.gz")
        ignore("okhttp3/osgi/workspace/cnf/repo/index.xml.gz.sha")
      }
    }
    
    // Expose OSGi jars to the test environment.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    				return nil, nil
    			}
    			checkGoFile(pass, f)
    		} else {
    			if err := checkOtherFile(pass, name); err != nil {
    				return nil, err
    			}
    		}
    	}
    	return nil, nil
    }
    
    func checkGoFile(pass *analysis.Pass, f *ast.File) {
    	pastCutoff := false
    	for _, group := range f.Comments {
    		// A +build comment is ignored after or adjoining the package declaration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    	val := reflect.StructTag(tag).Get(key)
    	if val == "-" {
    		// Ignored, even if the field is anonymous.
    		return
    	}
    	if val == "" || val[0] == ',' {
    		if !field.Anonymous() {
    			// Ignored if the field isn't anonymous.
    			return
    		}
    		typ, ok := field.Type().Underlying().(*types.Struct)
    		if !ok {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ArchivesContinuousIntegrationTest.groovy

            "tarTree" | "tgzTo"  | "source.tgz"  | false
            "tarTree" | "tbzTo"  | "source.tbz2" | true
            "tarTree" | "tbzTo"  | "source.tbz2" | false
        }
    
        @Ignore("inputs from resources are ignored")
        def "using compressed files as inputs from resources - #source"() {
            given:
            def packDir = file("pack").createDir()
            def outputDir = file("unpack")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/google/ListMultimapPutTester.java

    import com.google.common.collect.testing.features.MapFeature;
    import java.util.List;
    import java.util.Map.Entry;
    import org.junit.Ignore;
    
    /**
     * Testers for {@link ListMultimap#put(Object, Object)}.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  9. pkg/quota/v1/install/registry.go

    func NewQuotaConfigurationForControllers(f quota.ListerForResourceFunc) quota.Configuration {
    	evaluators := core.NewEvaluators(f)
    	return generic.NewConfiguration(evaluators, DefaultIgnoredResources())
    }
    
    // ignoredResources are ignored by quota by default
    var ignoredResources = map[schema.GroupResource]struct{}{
    	// virtual resources that aren't stored and shouldn't be quota-ed
    	{Group: "", Resource: "bindings"}:                                       {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. cmd/os_windows.go

    				// It got deleted in the meantime, not found
    				// or returns too many symlinks ignore this
    				// file/directory.
    				if osIsNotExist(err) || isSysErrPathNotFound(err) ||
    					isSysErrTooManySymlinks(err) {
    					continue
    				}
    				return nil, err
    			}
    
    			if !opts.followDirSymlink && fi.IsDir() {
    				// directory symlinks are ignored.
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top