Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 761 for proper (0.29 sec)

  1. pkg/kubelet/oom/oom_watcher_linux_test.go

    	assert.Equal(t, numExpectedOomEvents, len(eventsRecorded))
    }
    
    // TestWatcherRecordsEventsForOomEventsWithAdditionalInfo verifies that our the
    // emitted event has the proper pid/process data when appropriate.
    func TestWatcherRecordsEventsForOomEventsWithAdditionalInfo(t *testing.T) {
    	// The process and event info should appear in the event message.
    	eventPid := 1000
    	processName := "fakeProcess"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 09 06:25:28 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/aggregator.go

    package app
    
    import (
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	controlplaneapiserver "k8s.io/kubernetes/pkg/controlplane/apiserver"
    )
    
    // The proper way to resolve this letting the aggregator know the desired group and version-within-group order of the underlying servers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/internal/ScalaCompileOptionsConfigurer.java

    import org.gradle.util.internal.VersionNumber;
    
    import java.io.File;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Set;
    
    /**
     * Configures scala compile options to include the proper jvm target.
     * Gradle tool is not responsible for understanding if the version of Scala selected is compatible with the toolchain
     * Does not configure if Java Toolchain feature is not in use
     *
     * @since 7.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/monitoring.go

    		}
    	}
    
    	// NOTE: this is a temporary solution to provide bare-bones debug functionality
    	// for pilot. a full design / implementation of self-monitoring and reporting
    	// is coming. that design will include proper coverage of statusz/healthz type
    	// functionality, in addition to how pilot reports its own metrics.
    	if err := addMonitor(mux); err != nil {
    		return nil, fmt.Errorf("could not establish self-monitoring: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64latelower.rules

    // omit unsigned extension
    (MOVWUreg x) && zeroUpper32Bits(x, 3) => x
    
    // don't extend after proper load
    (MOVBreg  x:(MOVBload  _ _)) => (MOVDreg x)
    (MOVBUreg x:(MOVBUload _ _)) => (MOVDreg x)
    (MOVHreg  x:(MOVBload  _ _)) => (MOVDreg x)
    (MOVHreg  x:(MOVBUload _ _)) => (MOVDreg x)
    (MOVHreg  x:(MOVHload  _ _)) => (MOVDreg x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. security/pkg/pki/util/generate_csr.go

    	"crypto/x509"
    	"crypto/x509/pkix"
    	"errors"
    	"fmt"
    	"os"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    // minimumRsaKeySize is the minimum RSA key size to generate certificates
    // to ensure proper security
    const minimumRsaKeySize = 2048
    
    // GenCSR generates a X.509 certificate sign request and private key with the given options.
    func GenCSR(options CertOptions) ([]byte, []byte, error) {
    	var priv any
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. pkg/kubelet/reason_cache.go

    	cache *lru.Cache
    }
    
    // ReasonItem is the cached item in ReasonCache
    type ReasonItem struct {
    	Err     error
    	Message string
    }
    
    // maxReasonCacheEntries is the cache entry number in lru cache. 1000 is a proper number
    // for our 100 pods per node target. If we support more pods per node in the future, we
    // may want to increase the number.
    const maxReasonCacheEntries = 1000
    
    // NewReasonCache creates an instance of 'ReasonCache'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/NtlmAuthenticator.groovy

    @CompileStatic
    class NtlmAuthenticator extends LoginAuthenticator {
        static final String NTLM_AUTH_METHOD = 'NTLM'
    
        // There is absolutely no doubt that no one should ever on a map like that
        // and that a proper implementation of an NTLM authenticator shouldn't do this
        // but those are test fixtures and I couldn't find a better way to do this
        // without deeper understanding of the Jetty APIs. Feel free to provide an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/gvkparser.go

    	typeName, ok := p.gvks[gvk]
    	if !ok {
    		return nil
    	}
    	t := p.parser.Type(typeName)
    	return &t
    }
    
    // NewGVKParser builds a GVKParser from a proto.Models. This
    // will automatically find the proper version of the object, and the
    // corresponding schema information.
    func NewGVKParser(models proto.Models, preserveUnknownFields bool) (*GvkParser, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 05 18:56:48 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

      }
    
      public void testBase64LenientPadding() {
        testDecodes(base64(), "Zg", "f");
        testDecodes(base64(), "Zg=", "f");
        testDecodes(base64(), "Zg==", "f"); // proper padding length
        testDecodes(base64(), "Zg===", "f");
        testDecodes(base64(), "Zg====", "f");
      }
    
      public void testBase64InvalidDecodings() {
        // These contain bytes not in the decodabet.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
Back to top