Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 993 for _ignored (0.22 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                @DisableCachingByDefault(because = "test task")
                public class MyTask extends DefaultTask {
                    // Should be ignored because it's not a getter
                    public void getVoid() {
                    }
    
                    // Should be ignored because it's not a getter
                    public int getWithParameter(int count) {
                        return count;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/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
    - 9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/options/generic.go

    }
    
    // AddIgnorePreflightErrorsFlag adds the --ignore-preflight-errors flag to the given flagset
    func AddIgnorePreflightErrorsFlag(fs *pflag.FlagSet, ignorePreflightErrors *[]string) {
    	fs.StringSliceVar(
    		ignorePreflightErrors, IgnorePreflightErrors, *ignorePreflightErrors,
    		"A list of checks whose errors will be shown as warnings. Example: 'IsPrivilegedUser,Swap'. Value 'all' ignores errors from all checks.",
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. pilot/pkg/model/envoyfilter.go

    	// ProxyPrefixMatch provides a prefix match for the proxy version. The current API only allows
    	// regex match, but as an optimization we can reduce this to a prefix match for common cases.
    	// If this is set, ProxyVersionRegex is ignored.
    	ProxyPrefixMatch string
    	Name             string
    	Namespace        string
    	FullName         string
    }
    
    // wellKnownVersions defines a mapping of well known regex matches to prefix matches
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcIntegrationTest.groovy

        def "can use task types defined in buildSrc"() {
            given:
            createDirs("buildSrc/ignored")
            file("buildSrc/settings.gradle") << """
                include 'ignored' // include some content
            """
            file("buildSrc/build.gradle") << """
                allprojects { apply plugin: 'java-library' } // include some content
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/go/types/unify.go

    // If a call fails (returns false), unification fails.
    //
    // In the unification context, structural equivalence of two types
    // ignores the difference between a defined type and its underlying
    // type if one type is a defined type and the other one is not.
    // It also ignores the difference between an (external, unbound)
    // type parameter and its core type.
    // If two types are not structurally equivalent, they cannot be Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. pkg/proxy/util/utils.go

    		cidrStr := strings.TrimSpace(cidrStrUntrimmed)
    		_, cidr, err := netutils.ParseCIDRSloppy(cidrStr)
    		if err != nil {
    			// Ignore empty strings. Same as in MapIPsByIPFamily
    			if len(cidrStr) != 0 {
    				klog.ErrorS(err, "Invalid CIDR ignored", "CIDR", cidrStr)
    			}
    			continue
    		}
    		// since we just succefully parsed the CIDR, IPFamilyOfCIDR will never return "IPFamilyUnknown"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server.go

    	fs.Var(&utilflag.IPPortVar{Val: &o.config.HealthzBindAddress}, "healthz-bind-address", "The IP address and port for the health check server to serve on, defaulting to \"0.0.0.0:10256\". This parameter is ignored if a config file is specified by --config.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. src/runtime/signal_unix.go

    func raisebadsignal(sig uint32, c *sigctxt) {
    	if sig == _SIGPROF {
    		// Ignore profiling signals that arrive on non-Go threads.
    		return
    	}
    
    	var handler uintptr
    	var flags int32
    	if sig >= _NSIG {
    		handler = _SIG_DFL
    	} else {
    		handler = atomic.Loaduintptr(&fwdSig[sig])
    		flags = sigtable[sig].flags
    	}
    
    	// If the signal is ignored, raising the signal is no-op.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. test/linknameasm.go

    // buildrundir
    
    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build amd64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 210 bytes
    - Viewed (0)
Back to top