Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 832 for newer (0.07 sec)

  1. cmd/bucket-notification-handlers.go

    		if ok {
    			for i, queue := range config.QueueList {
    				// Remove ARN not found queues, because we previously allowed
    				// adding unexpected entries into the config.
    				//
    				// With newer config disallowing changing / turning off
    				// notification targets without removing ARN in notification
    				// configuration we won't see this problem anymore.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		// We will manage it, but no need to attempt to apply the version annotation, which could race with newer versions
    		return cur, false, true
    	}
    	// We are either newer or the same version of the last owner - we can take over. We need to actually
    	// re-apply the annotation
    	return cur, true, true
    }
    
    type derivedInput struct {
    	TemplateInput
    
    	// Inserted from injection config
    	ProxyImage  string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    // Simplify ISEL $0 y z into ISELZ by inverting comparison and reversing arguments.
    (ISEL [a] (MOVDconst [0]) y z) => (ISELZ [a^0x4] y z)
    
    // SETBC, SETBCR is supported on ISA 3.1(Power10) and newer, use ISELZ for
    // older targets
    (SETBC [2] cmp) && buildcfg.GOPPC64 <= 9 => (ISELZ [2] (MOVDconst [1]) cmp)
    (SETBCR [2] cmp) && buildcfg.GOPPC64 <= 9 => (ISELZ [6] (MOVDconst [1]) cmp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginCheckInService.java

            DeprecationLogger.deprecateIndirectUsage("Gradle Enterprise plugin " + pluginVersion)
                .startingWithGradle9(String.format("only Gradle Enterprise plugin %s.%s.%s or newer is supported",
                    MINIMUM_SUPPORTED_PLUGIN_VERSION_SINCE_GRADLE_9.getMajor(),
                    MINIMUM_SUPPORTED_PLUGIN_VERSION_SINCE_GRADLE_9.getMinor(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarcPlugin.java

            configureReportsConventionMapping(task, baseName);
            configureToolchains(task);
        }
    
        @Override
        protected void beforeApply() {
            // Necessary to disambiguate the published variants of newer codenarc versions (including the default version)
            project.getPluginManager().apply(JvmEcosystemPlugin.class);
        }
    
        private void configureDefaultDependencies(Configuration configuration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:49:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. src/os/zero_copy_linux.go

    	// TODO(panjf2000): run some tests to see if we should unlock the non-streams for splice.
    	// Streams benefit the most from the splice(2), non-streams are not even supported in old kernels
    	// where splice(2) will just return EINVAL; newer kernels support non-streams like UDP, but I really
    	// doubt that splice(2) could help non-streams, cuz they usually send small frames respectively
    	// and one splice call would result in one frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/tidy.go

    	base.AddModCommonFlags(&cmdTidy.Flag)
    }
    
    // A goVersionFlag is a flag.Value representing a supported Go version.
    //
    // (Note that the -go argument to 'go mod edit' is *not* a goVersionFlag.
    // It intentionally allows newer-than-supported versions as arguments.)
    type goVersionFlag struct {
    	v string
    }
    
    func (f *goVersionFlag) String() string { return f.v }
    func (f *goVersionFlag) Get() any       { return f.v }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/internal/cpu/cpu_x86.go

    	X86.HasSSE42 = isSet(ecx1, cpuid_SSE42)
    	X86.HasPOPCNT = isSet(ecx1, cpuid_POPCNT)
    	X86.HasAES = isSet(ecx1, cpuid_AES)
    
    	// OSXSAVE can be false when using older Operating Systems
    	// or when explicitly disabled on newer Operating Systems by
    	// e.g. setting the xsavedisable boot option on Windows 10.
    	X86.HasOSXSAVE = isSet(ecx1, cpuid_OSXSAVE)
    
    	// The FMA instruction set extension only has VEX prefixed instructions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    			check.pass.Reportf(pos, "invalid space %#q in %s directive", r, verb)
    		}
    	}
    
    	switch verb {
    	default:
    		// TODO: Use the go language version for the file.
    		// If that version is not newer than us, then we can
    		// report unknown directives.
    
    	case "//go:build":
    		// Ignore. The buildtag analyzer reports misplaced comments.
    
    	case "//go:debug":
    		if check.file == nil {
    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. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            then:
            bytecodeVersion() == TestJavaClassUtil.getClassVersion(lower.javaVersion)
        }
    
        @Requires(UnitTestPreconditions.Jdk12OrLater)
        def "compile fails when using newer API with release option"() {
            given:
            file("src/main/java/compile/test/FailsOnJava11.java") << """
                package compile.test;
    
                import java.util.stream.Stream;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top