Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for mypair (0.08 sec)

  1. cmd/xl-storage-format-v2.go

    	}
    	x.versions = x.versions[:versions]
    	x.data = data
    	x.metaV = metaV
    	if err = x.data.validate(); err != nil {
    		x.data.repair()
    		storageLogIf(GlobalContext, fmt.Errorf("xlMetaV2.loadIndexed: data validation failed: %v. %d entries after repair", err, x.data.entries()))
    	}
    	return decodeVersions(buf, versions, func(i int, hdr, meta []byte) error {
    		ver := &x.versions[i]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			delete(gvksToInvalidFiles, gvk)
    		}
    	}
    
    	type pair struct {
    		old *unstructured.Unstructured
    		new *unstructured.Unstructured
    	}
    
    	// For each valid file, match it with every invalid file of the same GVK
    	validXValidPairs := []pair{}
    	validXInvalidPairs := []pair{}
    	invalidXInvalidPairs := []pair{}
    
    	for gvk, valids := range gvksToValidFiles {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. internal/config/certs.go

    	}
    
    	if len(x509Certs) == 0 {
    		return nil, ErrTLSUnexpectedData(nil).Msg("Empty public certificate file %s", certFile)
    	}
    
    	return x509Certs, nil
    }
    
    // LoadX509KeyPair - load an X509 key pair (private key , certificate)
    // from the provided paths. The private key may be encrypted and is
    // decrypted using the ENV_VAR: MINIO_CERT_PASSWD.
    func LoadX509KeyPair(certFile, keyFile string) (tls.Certificate, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. cni/pkg/repair/netns.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package repair
    
    import (
    	"fmt"
    	"math"
    	"net"
    	"strconv"
    
    	netns "github.com/containernetworking/plugins/pkg/ns"
    	"github.com/prometheus/procfs"
    	corev1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/pkg/log"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

        internal
        fun readRootBuildStateFrom(
            stateFile: ConfigurationCacheStateFile,
            loadAfterStore: Boolean,
            graph: BuildTreeWorkGraph,
            graphBuilder: BuildTreeWorkGraphBuilder?
        ): Pair<String, BuildTreeWorkGraph.FinalizedGraph> {
            return readConfigurationCacheState(stateFile) { state ->
                state.run {
                    readRootBuildState(graph, graphBuilder, loadAfterStore)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java

         */
        String findTool(String toolName);
    
        /**
         * Let the toolchain decide if it matches requirements defined
         * in the toolchain plugin configuration.
         *
         * @param requirements key value pair, may not be {@code null}
         * @return {@code true} if the requirements match, otherwise {@code false}
         */
        boolean matchesRequirements(Map<String, String> requirements);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/net/smtp/smtp_test.go

    			send("250-STARTTLS")
    			send("250 Ok")
    		case "STARTTLS":
    			send("220 Go ahead")
    			keypair, err := tls.X509KeyPair(localhostCert, localhostKey)
    			if err != nil {
    				return err
    			}
    			config := &tls.Config{Certificates: []tls.Certificate{keypair}}
    			c = tls.Server(c, config)
    			defer c.Close()
    			return serverHandleTLS(c, t)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/wrappers.go

    	return p
    }
    
    // Label sets a {k,v} pair to the inner pod label.
    func (p *PodWrapper) Label(k, v string) *PodWrapper {
    	if p.ObjectMeta.Labels == nil {
    		p.ObjectMeta.Labels = make(map[string]string)
    	}
    	p.ObjectMeta.Labels[k] = v
    	return p
    }
    
    // Labels sets all {k,v} pair provided by `labels` to the inner pod labels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            return designJspFileNameMap.get(fileName);
        }
    
        @SuppressWarnings("unchecked")
        public Pair<String, String>[] getDesignJspFileNames() {
            return designJspFileNameMap.entrySet().stream().map(e -> new Pair<>(e.getKey(), e.getValue())).toArray(n -> new Pair[n]);
        }
    
        public List<Path> refreshDesignJspFiles() {
            final List<Path> fileList = new ArrayList<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. pkg/controlplane/instance.go

    	// KubeAPIServer defines variable used internally when referring to kube-apiserver component
    	KubeAPIServer = "kube-apiserver"
    	// repairLoopInterval defines the interval used to run the Services ClusterIP and NodePort repair loops
    	repairLoopInterval = 3 * time.Minute
    )
    
    // Extra defines extra configuration for kube-apiserver
    type Extra struct {
    	EndpointReconcilerConfig EndpointReconcilerConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top