Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 259 for ungetc (0.13 sec)

  1. docs/bucket/replication/setup_ilm_expiry_replication.sh

    export MINIO_KMS_AUTO_ENCRYPTION=off
    export MINIO_PROMETHEUS_AUTH_TYPE=public
    export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    unset MINIO_KMS_KES_ENDPOINT
    unset MINIO_KMS_KES_KEY_NAME
    
    if [ ! -f ./mc ]; then
    	wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    		chmod +x mc
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_traffic_policy.go

    		tls.CaCertificates = "system"
    	}
    
    	return connectionPool, outlierDetection, loadBalancer, tls, proxyProtocol
    }
    
    // FIXME: there isn't a way to distinguish between unset values and zero values
    func (cb *ClusterBuilder) applyConnectionPool(mesh *meshconfig.MeshConfig,
    	mc *clusterWrapper, settings *networking.ConnectionPoolSettings,
    ) {
    	if settings == nil {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

        }
    
        def "returning null from replace unsets the property"() {
            given:
            def property = property().value(someValue())
    
            when:
            property.replace { null }
    
            then:
            !property.isPresent()
        }
    
        def "returning null from replace unsets the property falling back to convention"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    // it has been set to either true or false.
    // It is used to identify whether a flag appears;
    // the standard boolean flag cannot
    // distinguish missing from unset.
    // It also satisfies flag.Value.
    type triState int
    
    const (
    	unset triState = iota
    	setTrue
    	setFalse
    )
    
    func triStateFlag(name string, value triState, usage string) *triState {
    	flag.Var(&value, name, usage)
    	return &value
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. hack/lib/util.sh

      - DOCKER_HOST hasn't been set or is set incorrectly
        - Linux: domain socket is used, DOCKER_* should be unset. In Bash run `unset ${!DOCKER_*}`
        - macOS w/ Docker for Mac: domain socket is used, DOCKER_* should be unset. In Bash run `unset ${!DOCKER_*}`
      - Other things to check:
        - Linux: User isn't in 'docker' group.  Add and relogin.
          - Something like 'sudo usermod -a -G docker ${USER}'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    	"metadata":          "Standard object's metadata. The name has no particular meaning. It must be be a DNS subdomain (dots allowed, 253 characters). To ensure that...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"selector":    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"selector":    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/policy_applier.go

    // namespace-level, which is preferred over mesh-level).
    // - When there are more than one policy in the same scope (i.e workload-level), the oldest one win.
    // - UNSET will be replaced with the setting from the parent. I.e UNSET port-level config will be
    // replaced with config from workload-level, UNSET in workload-level config will be replaced with
    // one in namespace-level and so on.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    	"selector":     "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.",
    	"averageValue": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top