Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for seem (0.07 sec)

  1. pilot/pkg/bootstrap/istio_ca.go

    		// Abort after 20 minutes.
    		ctx, cancel := context.WithTimeout(context.Background(), time.Minute*20)
    		defer cancel()
    		// rootCertFile will be added to "ca-cert.pem".
    		// readSigningCertOnly set to false - it doesn't seem to be used in Citadel, nor do we have a way
    		// to set it only for one job.
    		caOpts, err = ca.NewSelfSignedIstioCAOptions(ctx,
    			selfSignedRootCertGracePeriodPercentile.Get(), SelfSignedCACertTTL.Get(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                // is different from the return type of the constructor.
                //
                // TODO: This seems a little indirect. Is there a better way to do this? For FE1.0 there is
                // a special `TypeAliasConstructorDescriptor` for this case. For FIR there is
                // FirConstructor.originalConstructorIfTypeAlias but that doesn't seem to help here as it
                // is null for the constructors we get.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  3. src/os/exec/exec.go

    		// (It is safe and non-racy to do so on Unix platforms, and users might not
    		// test with the race detector on all platforms;
    		// see https://go.dev/issue/62596.)
    		//
    		// So we will pass the fully resolved path to os.StartProcess, but leave
    		// c.Path as is: missing a bit of logging information seems less harmful
    		// than triggering a surprising data race, and if the user really cares
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/list.md

    | `minio_node_replication_max_queued_count`               | Maximum number of objects queued for replication seen since server start                                 |
    | `minio_node_replication_recent_backlog_count`           | Total number of objects seen in replication backlog in the last 5 minutes                                |
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

            @Override
            public void withParticipatingModules(Action<? super ModuleIdentifier> action) {
                Set<ModuleIdentifier> seen = new HashSet<>();
                for (NodeState node : conflict.nodes) {
                    ModuleIdentifier module = node.getComponent().getId().getModule();
                    if (seen.add(module)) {
                        action.execute(module);
                    }
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/endpointshards.go

    	// name of the k8s cluster, derived from the config (secret).
    	Shards map[ShardKey][]*IstioEndpoint
    
    	// ServiceAccounts has the concatenation of all service accounts seen so far in endpoints.
    	// This is updated on push, based on shards. If the previous list is different than
    	// current list, a full push will be forced, to trigger a secure naming update.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                Set<String> seen = new LinkedHashSet<>();
                Matcher<String> messageMatcher = normalizedLineSeparators(matcher);
                for (FailureDetails failure : failures) {
                    for (String cause : failure.causes) {
                        if (messageMatcher.matches(cause)) {
                            return this;
                        }
                        seen.add(cause);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

            require(owner is IsolateOwners.OwnerFlowScope) {
                "Flow actions must belong to a Flow scope!"
            }
            return owner
        }
    }
    
    
    /**
     * Handles Provider instances seen in the object graph, and delegates to another codec that handles the value.
     */
    class ProviderCodec(
        private val providerCodec: FixedValueReplacingProviderCodec
    ) : Codec<ProviderInternal<*>> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         */
        public boolean isRefreshKeys() {
            return refreshKeys;
        }
    
        /**
         * If true, after writing the dependency verification file, a public keyring
         * file will be generated with all keys seen during generation of the file.
         *
         * This file can then be used as a source for public keys instead of reaching
         * out public key servers.
         *
         * @return true if keys should be exported
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. cmd/erasure-healing-common.go

    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"slices"
    	"time"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top