Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for denormalize (0.2 sec)

  1. cmd/iam.go

    				// Log and continue error - perhaps it'll work the next time.
    				iamLogIf(GlobalContext, err)
    			}
    		}
    	}
    }
    
    // NormalizeLDAPAccessKeypairs - normalize the access key pairs (service
    // accounts) for LDAP users. This normalizes the parent user and the group names
    // whenever the parent user parses validly as a DN.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/time/time.go

    	if loc == nil {
    		panic("time: missing Location in call to Date")
    	}
    
    	// Normalize month, overflowing into year.
    	m := int(month) - 1
    	year, m = norm(year, m, 12)
    	month = Month(m) + 1
    
    	// Normalize nsec, sec, min, hour, overflowing into day.
    	sec, nsec = norm(sec, nsec, 1e9)
    	min, sec = norm(min, sec, 60)
    	hour, min = norm(hour, min, 60)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                moduleFile = moduleFile.getAbsoluteFile();
                            }
                        } else {
                            moduleFile = new File(moduleFile.toURI().normalize());
                        }
    
                        if (aggregatorFiles.contains(moduleFile)) {
                            StringBuilder buffer = new StringBuilder(256);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    		url("https://assets.gradle.com/lato/fonts/lato-heavy/lato-heavy.woff") format("woff");
    }
    
    /* BEGIN asciidoc.css */
    
    /*! normalize.css v2.1.2 | MIT License | git.io/normalize */
    /* ========================================================================== HTML5 display definitions ========================================================================== */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            // model interpolation
            resultModel = interpolateModel(resultModel, request, problems);
    
            // url normalization
            resultModel = modelUrlNormalizer.normalize(resultModel, request);
    
            result.setEffectiveModel(resultModel);
    
            // Now the fully interpolated model is available: reconfigure the resolver
            if (!resultModel.getRepositories().isEmpty()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            problems.setRootModel(resultModel);
    
            // model interpolation
            resultModel = interpolateModel(resultModel, request, problems);
    
            // url normalization
            modelUrlNormalizer.normalize(resultModel, request);
    
            result.setEffectiveModel(resultModel);
    
            // Now the fully interpolated model is available: reconfigure the resolver
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. cmd/sts-handlers_test.go

    		c.Fatalf("Expected to fail to create STS cred with no associated policy!")
    	}
    
    	mustNormalizeDN := func(dn string) string {
    		normalizedDN, err := ldap.NormalizeDN(dn)
    		if err != nil {
    			c.Fatalf("normalize err: %v", err)
    		}
    		return normalizedDN
    	}
    
    	actualUserDN := mustNormalizeDN("uid=svc.algorithm,OU=swengg,DC=min,DC=io")
    
    	// \uFE52 is the unicode dot SMALL FULL STOP used below:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  8. src/math/big/float_test.go

    		{"0x1p1024", math.Inf(+1), Above},
    		{"1e10000", math.Inf(+1), Above},
    		{"0x1.fffffffffffff8p2147483646", math.Inf(+1), Above}, // overflow in rounding
    		{"Inf", math.Inf(+1), Exact},
    
    		// selected denormalized values that were handled incorrectly in the past
    		{"0x.fffffffffffffp-1022", smallestNormalFloat64 - math.SmallestNonzeroFloat64, Exact},
    		{"4503599627370495p-1074", smallestNormalFloat64 - math.SmallestNonzeroFloat64, Exact},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

                               $keep_dims)),
                         TFL_AF_None),
               (TFL_L2NormalizationOp $x, TFL_AF_None),
               [(L2NormValidReduceIndex $sq_op, $axis)]>;
    
      // Below patterns for L2Normalize when there is an Add or Maximum
      // adding or clamping to a small constant scalar.
      def L2NormalizePattern2#FirstOp#SecondOp : Pat<
                        (FirstOp $x,
                         (SecondOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. src/math/big/int_test.go

    			carry := 0
    			for i := len(x) - 1; i >= 0; i-- {
    				t := int(z[k]) + int(x[i])*d + carry
    				z[k], carry = byte(t), t>>8
    				k--
    			}
    			z[k] = byte(carry)
    		}
    		k0--
    	}
    
    	// normalize (remove leading 0's)
    	i := 0
    	for i < len(z) && z[i] == 0 {
    		i++
    	}
    
    	return z[i:]
    }
    
    func checkMul(a, b []byte) bool {
    	var x, y, z1 Int
    	x.SetBytes(a)
    	y.SetBytes(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top