Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 188 for vips (0.2 sec)

  1. src/cmd/link/internal/loadelf/ldelf.go

    		MIPS | uint32(elf.R_MIPS_GOT16)<<16,
    		MIPS | uint32(elf.R_MIPS_GOT_HI16)<<16,
    		MIPS | uint32(elf.R_MIPS_GOT_LO16)<<16,
    		MIPS | uint32(elf.R_MIPS_GPREL16)<<16,
    		MIPS | uint32(elf.R_MIPS_GOT_PAGE)<<16,
    		MIPS | uint32(elf.R_MIPS_JALR)<<16,
    		MIPS | uint32(elf.R_MIPS_GOT_OFST)<<16,
    		MIPS64 | uint32(elf.R_MIPS_HI16)<<16,
    		MIPS64 | uint32(elf.R_MIPS_LO16)<<16,
    		MIPS64 | uint32(elf.R_MIPS_GOT16)<<16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/net.go

    // K8S may get a pod Add event without any IPs in the object, and the pod will later be updated with IPs.
    //
    // We always need the IPs, but this is fine because this AddPodToMesh can be called from the CNI plugin as well,
    // which always has the firsthand info of the IPs, even before K8S does - so we pass them separately here because
    // we actually may have them before K8S in the Pod object.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. cmd/utils.go

    	}
    
    	if secureCiphers := env.Get(api.EnvAPISecureCiphers, config.EnableOn) == config.EnableOn; secureCiphers {
    		tlsConfig.CipherSuites = fips.TLSCiphers()
    	} else {
    		tlsConfig.CipherSuites = fips.TLSCiphersBackwardCompatible()
    	}
    	tlsConfig.CurvePreferences = fips.TLSCurveIDs()
    	return tlsConfig
    }
    
    /////////// Types and functions for OpenID IAM testing
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. src/crypto/tls/boring_test.go

    	testClientCert(t, "basic (client cert)", r1pool, L2_I.key, [][]byte{L2_I.der, I_R1.der}, true)
    	fipstls.Force()
    	testServerCert(t, "basic (fips)", r1pool, L2_I.key, [][]byte{L2_I.der, I_R1.der}, false)
    	testClientCert(t, "basic (fips, client cert)", r1pool, L2_I.key, [][]byte{L2_I.der, I_R1.der}, false)
    	fipstls.Abandon()
    
    	if t.Failed() {
    		t.Fatal("basic test failed, skipping exhaustive test")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/mips/include /tmp/mips/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips && linux
    
    package unix
    
    const (
    	SYS_SYSCALL                      = 4000
    	SYS_EXIT                         = 4001
    	SYS_FORK                         = 4002
    	SYS_READ                         = 4003
    	SYS_WRITE                        = 4004
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. internal/grid/benchmark_test.go

    					// This will give an estimate of the total ops/s.
    					latency := float64(atomic.LoadInt64(&lat)) / float64(time.Millisecond)
    					b.ReportMetric(float64(n)*float64(ops)/spent.Seconds(), "vops/s")
    					b.ReportMetric(latency/float64(ops), "ms/op")
    				}
    			})
    		}
    	})
    	b.Run("rpc", func(b *testing.B) {
    		for par := 1; par <= 32; par *= 2 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/crypto/ecdsa/ecdsa.go

    // package references and follows the equivalent [SEC 1, Version 2.0].
    //
    // [FIPS 186-4]: https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf
    // [SEC 1, Version 2.0]: https://www.secg.org/sec1-v2.pdf
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/ecdh"
    	"crypto/elliptic"
    	"crypto/internal/bigmod"
    	"crypto/internal/boring"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go

    // cgo -godefs -objdir=/tmp/mips/cgo -- -Wall -Werror -static -I/tmp/mips/include linux/types.go | go run mkpost.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips && linux
    
    package unix
    
    const (
    	SizeofPtr  = 0x4
    	SizeofLong = 0x4
    )
    
    type (
    	_C_long int32
    )
    
    type Timespec struct {
    	Sec  int32
    	Nsec int32
    }
    
    type Timeval struct {
    	Sec  int32
    	Usec int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/cidrallocator.go

    		networkingv1alpha1.LabelIPAddressFamily: string(c.IPFamily()),
    		networkingv1alpha1.LabelManagedBy:       ControllerName,
    	}).AsSelectorPreValidated()
    	ips, err := c.ipAddressLister.List(ipLabelSelector)
    	if err != nil {
    		return
    	}
    	for _, ip := range ips {
    		f(netutils.ParseIPSloppy(ip.Name))
    	}
    }
    
    func (c *MetaAllocator) CIDR() net.IPNet {
    	return net.IPNet{}
    
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/controller/repair.go

    	netutils "k8s.io/utils/net"
    )
    
    // Repair is a controller loop that periodically examines all service ClusterIP allocations
    // and logs any errors, and then sets the compacted and accurate list of all allocated IPs.
    //
    // Handles:
    // * Duplicate ClusterIP assignments caused by operator action or undetected race conditions
    // * ClusterIPs that do not match the currently configured range
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top