Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 125 for Option (0.26 sec)

  1. src/crypto/x509/x509.go

    // generate the signature is not secure, and the signature has been rejected.
    //
    // To temporarily restore support for SHA-1 signatures, include the value
    // "x509sha1=1" in the GODEBUG environment variable. Note that this option will
    // be removed in a future release.
    type InsecureAlgorithmError SignatureAlgorithm
    
    func (e InsecureAlgorithmError) Error() string {
    	var override string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	serviceController := NewController(configController, fx, meshcfg)
    	return configController, serviceController
    }
    
    func initServiceDiscoveryWithOpts(t test.Failer, workloadOnly bool, opts ...Option) (model.ConfigStore, *Controller, *xdsfake.Updater) {
    	store := memory.Make(collections.Pilot)
    	configController := memory.NewSyncController(store)
    
    	stop := test.NewStop(t)
    	go configController.Run(stop)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    			}
    		}
    		// Don't override an explicit '-mod=' argument.
    		return
    	}
    
    	// TODO(#40775): commands should pass in the module mode as an option
    	// to modload functions instead of relying on an implicit setting
    	// based on command name.
    	switch cfg.CmdName {
    	case "get", "mod download", "mod init", "mod tidy", "work sync":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                  }
                ]
              },
              "unit": "short"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "Replication Errors"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "light-red",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public void allprojects(Action<? super Project> action) {
            allprojects(this, action);
        }
    
        @Override
        public void allprojects(ProjectInternal referrer, Action<? super Project> action) {
            getProjectConfigurator().allprojects(getCrossProjectModelAccess().getAllprojects(referrer, this), action);
        }
    
        @Override
        public Set<Project> getSubprojects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/options_test.go

    	cpoptions "k8s.io/cloud-provider/options"
    	componentbaseconfig "k8s.io/component-base/config"
    	"k8s.io/component-base/logs"
    	"k8s.io/component-base/metrics"
    	cmconfig "k8s.io/controller-manager/config"
    	cmoptions "k8s.io/controller-manager/options"
    	migration "k8s.io/controller-manager/pkg/leadermigration/options"
    	netutils "k8s.io/utils/net"
    
    	clientgofeaturegate "k8s.io/client-go/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route.go

    	case 303:
    		action.Redirect.ResponseCode = route.RedirectAction_SEE_OTHER
    	case 307:
    		action.Redirect.ResponseCode = route.RedirectAction_TEMPORARY_REDIRECT
    	case 308:
    		action.Redirect.ResponseCode = route.RedirectAction_PERMANENT_REDIRECT
    	default:
    		log.Warnf("Redirect Code %d is not yet supported", redirect.RedirectCode)
    		action = nil
    	}
    
    	out.Action = action
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            @Override
            public void beforeResolve(Action<? super ResolvableDependencies> action) {
                dependencyResolutionListeners.add("beforeResolve", userCodeApplicationContext.reapplyCurrentLater(action));
            }
    
            @Override
            public void beforeResolve(Closure action) {
                beforeResolve(ConfigureUtil.configureUsing(action));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    		case core.UpdateAction:
    			assert.Equal(t, pod.Name, action.GetObject().(*v1.Pod).Name, "Unexpected UpdateAction: %+v", action)
    		default:
    			assert.Fail(t, "Unexpected Action: %+v", action)
    		}
    		return true, ret, err
    	})
    
    	pod.Status.ContainerStatuses = []v1.ContainerStatus{{State: v1.ContainerState{Running: &v1.ContainerStateRunning{}}}}
    
    	t.Logf("Pod not found.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top