Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 619 for seal (0.07 sec)

  1. cmd/data-scanner.go

    			}
    
    			item.heal.enabled = thisHash.modAlt(f.oldCache.Info.NextCycle/folder.objectHealProbDiv, f.healObjectSelect/folder.objectHealProbDiv) && globalIsErasure
    			item.heal.bitrot = f.scanMode == madmin.HealDeepScan
    
    			// if the drive belongs to an erasure set
    			// that is already being healed, skip the
    			// healing attempt on this drive.
    			item.heal.enabled = item.heal.enabled && f.healObjectSelect > 0
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/bitmap.go

    type dryRunRange struct {
    	real *Range
    }
    
    func (dry dryRunRange) Allocate(ip net.IP) error {
    	return dry.real.allocate(ip, dryRunTrue)
    }
    
    func (dry dryRunRange) AllocateNext() (net.IP, error) {
    	return dry.real.allocateNext(dryRunTrue)
    }
    
    func (dry dryRunRange) Release(ip net.IP) error {
    	return dry.real.release(ip, dryRunTrue)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/x86/asm.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: Wed Aug 23 05:58:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * permits? As explained above, there is no unique answer. If we are primarily interested to deal
       * with underutilization, then we want stored permits to be given out /faster/ than fresh ones,
       * because underutilization = free resources for the taking. If we are primarily interested to
       * deal with overflow, then stored permits could be given out /slower/ than fresh ones. Thus, we
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * permits? As explained above, there is no unique answer. If we are primarily interested to deal
       * with underutilization, then we want stored permits to be given out /faster/ than fresh ones,
       * because underutilization = free resources for the taking. If we are primarily interested to
       * deal with overflow, then stored permits could be given out /slower/ than fresh ones. Thus, we
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top