Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 4,112 for _ignored (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactDeclarationIntegrationTest.groovy

                    task jar {}
                }
    
                project(':b') {
                    dependencies {
                        compile project(':a')
                    }
                    task jar {} // ignored
                }
            """
    
            when:
            succeeds ':b:checkDeps'
    
            then:
            result.assertTasksExecuted(":a:jar", ":b:checkDeps")
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_vendor.txt

    -- w/LICENSE --
    -- x/NOTICE! --
    -- x/x2/LICENSE --
    -- mypkg/LICENSE.txt --
    
    -- a/foo/bar/b/main.go --
    package b
    -- a/foo/bar/b/ignored.go --
    // This file is intended for use with "go run"; it isn't really part of the package.
    
    // +build ignore
    
    package main
    
    func main() {}
    -- a/foo/bar/b/main_test.go --
    package b
    
    import (
    	"os"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/JdkClassFinder.java

                            }
                            rootFiles.add(jarFile);
                        }
                    }
                    catch (IOException ignored) {
                    }
                }
            }
    
            if (ContainerUtil.exists(rootFiles, path -> path.getFileName().toString().startsWith("ibm"))) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/types.go

    	KubeletExtraArgs []Arg
    
    	// IgnorePreflightErrors provides a slice of pre-flight errors to be ignored when the current node is registered, e.g. 'IsPrivilegedUser,Swap'.
    	// Value 'all' ignores errors from all checks.
    	IgnorePreflightErrors []string
    
    	// ImagePullPolicy specifies the policy for image pulling during kubeadm "init" and "join" operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. src/go/ast/resolve.go

    // remaining unresolved identifiers are reported as undeclared. If the files
    // belong to different packages, one package name is selected and files with
    // different package names are reported and then ignored.
    // The result is a package node and a [scanner.ErrorList] if there were errors.
    //
    // Deprecated: use the type checker [go/types] instead; see [Object].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. pyproject.toml

        # Including PR: https://github.com/encode/httpx/pull/2309
        "ignore:'cgi' is deprecated:DeprecationWarning",
        # For passlib
        "ignore:'crypt' is deprecated and slated for removal in Python 3.13:DeprecationWarning",
        # see https://trio.readthedocs.io/en/stable/history.html#trio-0-22-0-2022-09-28
        "ignore:You seem to already have a custom.*:RuntimeWarning:trio",
        "ignore::trio.TrioDeprecationWarning",
        # TODO remove pytest-cov
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/graph_builder_test.go

    		},
    
    		{
    			name: "ignore unrelated",
    			deps: []*node{
    				makeNode(ns1child1, withOwners(clusterabsentparent, makeID("v1", "Parent", "ns1", "name", "anotheruid"))),
    			},
    			verifiedAbsent:    clusterabsentparent,
    			expectedAlternate: nil,
    		},
    		{
    			name: "ignore matches",
    			deps: []*node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 17 15:49:32 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    	check := newChecker(pass, pass.Fset.File(f.Package).Name(), f)
    
    	for _, group := range f.Comments {
    		// A //go:build or a //go:debug comment is ignored after the package declaration
    		// (but adjoining it is OK, in contrast to +build comments).
    		if group.Pos() >= f.Package {
    			check.inHeader = false
    		}
    
    		// Check each line of a //-comment.
    		for _, c := range group.List {
    			check.comment(c.Slash, c.Text)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/quota/v1/interfaces.go

    	UsageStats(options UsageStatsOptions) (UsageStats, error)
    }
    
    // Configuration defines how the quota system is configured.
    type Configuration interface {
    	// IgnoredResources are ignored by quota.
    	IgnoredResources() map[schema.GroupResource]struct{}
    	// Evaluators for quota evaluation.
    	Evaluators() []Evaluator
    }
    
    // Registry maintains a list of evaluators
    type Registry interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 30 21:02:09 UTC 2021
    - 3.8K bytes
    - Viewed (0)
Back to top