Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 508 for seal (0.14 sec)

  1. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

            awsCredentials     | "authenticated"
            null               | "anonymous"
        }
    
        /**
         * Allows for quickly making real aws requests during development
         */
        @Ignore
        def "should interact with real S3 using KEY/SECRET pair"() {
            DefaultAwsCredentials credentials = new DefaultAwsCredentials()
            String bucketName = System.getenv('G_S3_BUCKET')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/const.go

    }
    
    // truncate Real and Imag parts of Mpcplx to 32-bit or 64-bit
    // precision, according to type; return truncated value. In case of
    // overflow, calls Errorf but does not truncate the input value.
    func trunccmplxlit(v constant.Value, t *types.Type) constant.Value {
    	if t.IsUntyped() {
    		return v
    	}
    
    	fsz := t.Size() / 2
    	return makeComplex(roundFloat(constant.Real(v), fsz), roundFloat(constant.Imag(v), fsz))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/reloctype.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go

    	}, {
    		name:       "invalid Real-Ip",
    		realIP:     "garbage, just garbage!",
    		remoteAddr: "1.2.3.4",
    		expected:   []string{"1.2.3.4"},
    	}, {
    		name:         "invalid Real-Ip with forwarded-for",
    		realIP:       "garbage, just garbage!",
    		forwardedFor: "2.2.2.2",
    		remoteAddr:   "1.2.3.4",
    		expected:     []string{"2.2.2.2", "1.2.3.4"},
    	}, {
    		name:       "valid Real-Ip",
    		realIP:     "2.2.2.2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:21:56 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/gradient_checker.cc

    SET_BASE_UNITS_FOR_TYPE(complex128, ({{1, 0}, {0, 1}}));
    
    // SetJacobian sets the jacobian value at the provided row and column from a
    // tensor entry with type T.
    // When T is real, this is a simple assignment that casts the entry into the
    // jacobian type.
    // When T is complex, it assigns the real and complex values to successive rows
    // or columns in the matrix depending on the expand_by_row parameter
    template <typename T, typename JAC_T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritedec.go

    func rewriteValuedec_OpComplexReal(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (ComplexReal (ComplexMake real _ ))
    	// result: real
    	for {
    		if v_0.Op != OpComplexMake {
    			break
    		}
    		real := v_0.Args[0]
    		v.copyOf(real)
    		return true
    	}
    	// match: (ComplexReal x:(Load <t> ptr mem))
    	// cond: t.IsComplex() && t.Size() == 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/ipallocator.go

    type dryRunAllocator struct {
    	real *Allocator
    }
    
    func (dry dryRunAllocator) Allocate(ip net.IP) error {
    	return dry.real.allocateService(nil, ip, dryRunTrue)
    
    }
    
    func (dry dryRunAllocator) AllocateNext() (net.IP, error) {
    	return dry.real.allocateNextService(nil, dryRunTrue)
    }
    
    func (dry dryRunAllocator) Release(ip net.IP) error {
    	return dry.real.release(ip, dryRunTrue)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/common.go

    		if err != nil {
    			return nil, err
    		}
    
    		// In order for fakeclient.Discovery().ServerVersion() to return the backing API Server's
    		// real version; we have to do some clever API machinery tricks. First, we get the real
    		// API Server's version
    		realServerVersion, err := dryRunGetter.Client().Discovery().ServerVersion()
    		if err != nil {
    			return nil, errors.Wrap(err, "failed to get server version")
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. cmd/admin-router.go

    		if globalIsDistErasure || globalIsErasure {
    			// Heal operations
    
    			// Heal processing endpoint.
    			adminRouter.Methods(http.MethodPost).Path(adminVersion + "/heal/").HandlerFunc(adminMiddleware(adminAPI.HealHandler, traceAllFlag))
    			adminRouter.Methods(http.MethodPost).Path(adminVersion + "/heal/{bucket}").HandlerFunc(adminMiddleware(adminAPI.HealHandler, traceAllFlag))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. cmd/format-erasure.go

    		index := index
    		g.Go(func() error {
    			if storageDisks[index] == nil {
    				return errDiskNotFound
    			}
    			format, err := loadFormatErasure(storageDisks[index], heal)
    			if err != nil {
    				return err
    			}
    			formats[index] = format
    			if !heal {
    				// If no healing required, make the disks valid and
    				// online.
    				storageDisks[index].SetDiskID(format.Erasure.This)
    			}
    			return nil
    		}, index)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top