Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for isStandard (0.13 sec)

  1. cmd/object-api-utils.go

    	// Remove STANDARD StorageClass
    	metadata = removeStandardStorageClass(metadata)
    	// Clean meta etag keys 'md5Sum', 'etag', "expires", "x-amz-tagging".
    	return cleanMetadataKeys(metadata, "md5Sum", "etag", "expires", xhttp.AmzObjectTagging, "last-modified", VersionPurgeStatusKey)
    }
    
    // Filter X-Amz-Storage-Class field only if it is set to STANDARD.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. pkg/ctrlz/ctrlz.go

    	}
    
    	return topics
    }
    
    func normalize(input string) string {
    	return strings.Replace(input, "/", "-", -1)
    }
    
    // Run starts up the ControlZ listeners.
    //
    // ControlZ uses the set of standard core topics.
    func Run(o *Options, customTopics []fw.Topic) (*Server, error) {
    	topicMutex.Lock()
    	allTopics = append(allTopics, coreTopics...)
    	allTopics = append(allTopics, customTopics...)
    	topicMutex.Unlock()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/os/signal/doc.go

    SIGPIPE signal.
    
    If the program has not called Notify to receive SIGPIPE signals, then
    the behavior depends on the file descriptor number. A write to a
    broken pipe on file descriptors 1 or 2 (standard output or standard
    error) will cause the program to exit with a SIGPIPE signal. A write
    to a broken pipe on some other file descriptor will take no action on
    the SIGPIPE signal, and the write will fail with an EPIPE error.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		fmt.Fprintf(h, "go %s\n", p.Module.GoVersion)
    	}
    	fmt.Fprintf(h, "goos %s goarch %s\n", cfg.Goos, cfg.Goarch)
    	fmt.Fprintf(h, "import %q\n", p.ImportPath)
    	fmt.Fprintf(h, "omitdebug %v standard %v local %v prefix %q\n", p.Internal.OmitDebug, p.Standard, p.Internal.Local, p.Internal.LocalPrefix)
    	if cfg.BuildTrimpath {
    		fmt.Fprintln(h, "trimpath")
    	}
    	if p.Internal.ForceLibrary {
    		fmt.Fprintf(h, "forcelibrary\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/envoyfilter.go

    		} else if cp.Match.Proxy != nil && cp.Match.Proxy.ProxyVersion != "" {
    			// Attempt to convert regex to a simple prefix match for the common case of matching
    			// a standard Istio version. This field should likely be replaced with semver, but for now
    			// we can workaround the performance impact of regex
    			if prefix, f := wellKnownVersions[cp.Match.Proxy.ProxyVersion]; f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. subprojects/core/build.gradle.kts

            exclude("org.checkerframework", "checker-qual")
        }
        implementation(libs.xmlApis)
    
        compileOnly(libs.kotlinStdlib) {
            because("it needs to forward calls from instrumented code to the Kotlin standard library")
        }
    
        // Libraries that are not used in this project but required in the distribution
        runtimeOnly(libs.groovyAstbuilder)
        runtimeOnly(libs.groovyConsole)
        runtimeOnly(libs.groovyDateUtil)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. tests/integration/ambient/main_test.go

    	MeshExternal echo.Instances
    
    	MockExternal echo.Instances
    
    	// WaypointProxies by
    	WaypointProxies map[string]ambient.WaypointProxy
    }
    
    // TestMain defines the entrypoint for pilot tests using a standard Istio installation.
    // If a test requires a custom install it should go into its own package, otherwise it should go
    // here to reuse a single install across tests.
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            assert result != null: "Problem already validated"
            problems.set(index, null)
            return result
        }
    
        /**
         * Generates a `repositories` block pointing to the standard maven repo fixture.
         *
         * This is often required for running with configuration cache enabled, as
         * configuration cache eagerly resolves dependencies when storing the classpath.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. pilot/pkg/features/pilot.go

    	).Get()
    
    	SharedMeshConfig = env.Register("SHARED_MESH_CONFIG", "",
    		"Additional config map to load for shared MeshConfig settings. The standard mesh config will take precedence.").Get()
    
    	MultiRootMesh = env.Register("ISTIO_MULTIROOT_MESH", false,
    		"If enabled, mesh will support certificates signed by more than one trustAnchor for ISTIO_MUTUAL mTLS").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                withInput("Build file 'build.gradle': system property 'some.property'")
                withInput("Build file 'build.gradle': value from custom source 'MySource'")
            }
        }
    
        def "value source can use standard process API"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            ShellScript testScript = ShellScript.builder().printText("Hello, world").writeTo(testDirectory, "script")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top