Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 216 for version1 (0.14 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_reindex_start_button = "{labels.reindex_start_button}";
    
        /** The key of the message: Version */
        public static final String LABELS_TARGET_VERSION = "{labels.targetVersion}";
    
        /** The key of the message: Version From */
        public static final String LABELS_target_version = "{labels.target_version}";
    
        /** The key of the message: Request to OpenSearch */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: jvanzyl Build-Jdk: 1.6.0-dp org/codehaus/plexus/component/collections/AbstractComponentCol.class package org.codehaus.plexus.component.collections; public synchronized class AbstractComponentCol { protected String role; protected String roleHint; public void AbstractComponentCol(String); public void AbstractComponentCol(String, String); } org/codehaus/plexus/component/collections/ComponentList.class...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: jvanzyl Build-Jdk: 1.6.0-dp org/codehaus/plexus/component/collections/AbstractComponentCol.class package org.codehaus.plexus.component.collections; public synchronized class AbstractComponentCol { protected String role; protected String roleHint; public void AbstractComponentCol(String); public void AbstractComponentCol(String, String); } org/codehaus/plexus/component/collections/ComponentList.class...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 233.3K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier_test.go

    			ipvsErr:      "DeleteVirtualServer",
    			ok:           false,
    		},
    	}
    
    	for _, tc := range testCases {
    		ipvs := &fakeIpvs{tc.ipvsErr, false}
    		versioner := &fakeIPSetVersioner{version: tc.ipsetVersion, err: tc.ipsetErr}
    		err := CanUseIPVSProxier(ctx, ipvs, versioner, tc.scheduler)
    		if (err == nil) != tc.ok {
    			t.Errorf("Case [%s], expect %v, got err: %v", tc.name, tc.ok, err)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

    /*
     * Copyright 2012-2024 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.Deprecation
    
    internal class VersionRequirementDeprecationErrorImpl(
        override val reference: KaSymbol,
        override val version: Version,
        override val currentVersion: String,
        override val message: String,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // at least one result has been changed.
      // A tf.Cast() is inserted for any uses that isn't in the TensorFlow dialect.
      // `graph_version` indicates the current GraphDef compatibility versions
      // (the versions field in graph.proto).
      bool InferShapeForSingleOperation(Operation* op, int64_t max_iterations);
    
      // Infers shape on the provided region, including nested ones, iterate until
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    /*
    Copyright 2016 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. src/net/http/server.go

    // is not valid to use the [ResponseWriter] or read from the
    // [Request.Body] after or concurrently with the completion of the
    // ServeHTTP call.
    //
    // Depending on the HTTP client software, HTTP protocol version, and
    // any intermediaries between the client and the Go server, it may not
    // be possible to read from the [Request.Body] after writing to the
    // [ResponseWriter]. Cautious handlers should read the [Request.Body]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CacheTest.kt

    /*
     * Copyright (C) 2011 The Android Open Source Project
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
Back to top