Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 247 for Replayed (0.15 sec)

  1. internal/config/scanner/scanner.go

    	EnvExcessVersions = "MINIO_SCANNER_ALERT_EXCESS_VERSIONS"
    
    	ExcessFolders    = "alert_excess_folders"
    	EnvExcessFolders = "MINIO_SCANNER_ALERT_EXCESS_FOLDERS"
    
    	// All below are deprecated in October 2022 and
    	// replaced them with a single speed parameter
    	Delay            = "delay"
    	MaxWait          = "max_wait"
    	Cycle            = "cycle"
    	EnvDelay         = "MINIO_SCANNER_DELAY"
    	EnvCycle         = "MINIO_SCANNER_CYCLE"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/internal/chacha8rand/chacha8.go

    		// Normally this is done immediately after computing a block,
    		// but we do it immediately before computing the next block,
    		// to allow a much smaller serialized state (just the seed plus offset).
    		// This gives a delayed benefit for the forward secrecy
    		// (you can reconstruct the recent past given a memory dump),
    		// which we deem acceptable in exchange for the reduced size.
    		s.seed[0] = s.buf[len(s.buf)-reseed+0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/integTest/groovy/org/gradle/api/problems/ProblemsServiceIntegrationTest.groovy

            enableProblemsApiCheck()
        }
    
        def withReportProblemTask(@GroovyBuildScriptLanguage String taskActionMethodBody) {
            buildFile getProblemReportingScript(taskActionMethodBody)
        }
    
        def "problem replaced with a validation warning if mandatory id is missing"() {
            given:
            withReportProblemTask """
                problems.forNamespace('org.example.plugin').reporting {
                    it.details('Wrong API usage')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/plugin/noderesources.go

    	// for this plugin.
    	cancel func(reason error)
    
    	// resources is protected by the nodeResourcesController read/write lock.
    	// When receiving updates from the driver, the entire slice gets replaced,
    	// so it is okay to not do a deep copy of it. Only retrieving the slice
    	// must be protected by a read lock.
    	resources []*resourceapi.ResourceModel
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/envoyfilter.go

    		} else if cp.Match.Proxy != nil && cp.Match.Proxy.ProxyVersion != "" {
    			// Attempt to convert regex to a simple prefix match for the common case of matching
    			// a standard Istio version. This field should likely be replaced with semver, but for now
    			// we can workaround the performance impact of regex
    			if prefix, f := wellKnownVersions[cp.Match.Proxy.ProxyVersion]; f {
    				cpw.ProxyPrefixMatch = prefix
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        auto input = op.getOptional();
        auto elementType = getElementTypeOrSelf(input.getType());
        if (isa<TF::VariantType>(elementType)) {
          // We can only replace OptionalGetValue after the inputs have been
          // replaced.
          return failure();
        }
        rewriter.replaceOpWithNewOp<TF::CastOp>(op, op.getResult(0).getType(),
                                                input);
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Configuration for Istio Ambient.
      CNIAmbientConfig ambient = 21;
    
      // Specifies the CNI provider. Can be either "default" or "multus". When set to "multus", an additional
      // NetworkAttachmentDefinition resource is deployed to the cluster to allow the istio-cni plugin to be
      // invoked in a cluster using the Multus CNI plugin.
      string provider = 22;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	}
    
    	for i := range obj.BootstrapTokens {
    		bootstraptokenv1.SetDefaults_BootstrapToken(&obj.BootstrapTokens[i])
    	}
    }
    
    // SetDefaults_APIEndpoint sets the defaults for the API server instance deployed on a node.
    func SetDefaults_APIEndpoint(obj *APIEndpoint) {
    	if obj.BindPort == 0 {
    		obj.BindPort = DefaultAPIBindPort
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. src/log/slog/value_test.go

    		"foo",
    	} {
    		v := AnyValue(want)
    		got := v.Any()
    		if !reflect.DeepEqual(got, want) {
    			t.Errorf("got %v, want %v", got, want)
    		}
    	}
    }
    
    func TestLogValue(t *testing.T) {
    	want := "replaced"
    	r := &replace{StringValue(want)}
    	v := AnyValue(r)
    	if g, w := v.Kind(), KindLogValuer; g != w {
    		t.Errorf("got %s, want %s", g, w)
    	}
    	got := v.LogValuer().LogValue().Any()
    	if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. security/pkg/server/ca/server.go

    		Authenticators: authenticators,
    		serverCertTTL:  ttl,
    		ca:             ca,
    		monitoring:     newMonitoringMetrics(),
    	}
    
    	if len(features.CATrustedNodeAccounts) > 0 {
    		// TODO: do we need some way to delayed readiness until this is synced? Probably
    		// Worst case is we deny some requests though which are retried
    		server.nodeAuthorizer = NewMulticlusterNodeAuthenticator(features.CATrustedNodeAccounts, controller)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top