Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for NORMALIZED (0.14 sec)

  1. src/math/big/int_test.go

    			t.Errorf("#%d Quo: %v is not normalized", i, *q1)
    		}
    		if !isNormalized(r1) {
    			t.Errorf("#%d Rem: %v is not normalized", i, *r1)
    		}
    		if q1.Cmp(q) != 0 || r1.Cmp(r) != 0 {
    			t.Errorf("#%d QuoRem: got (%s, %s), want (%s, %s)", i, q1, r1, q, r)
    		}
    
    		q2, r2 := new(Int).QuoRem(x, y, new(Int))
    		if !isNormalized(q2) {
    			t.Errorf("#%d Quo: %v is not normalized", i, *q2)
    		}
    		if !isNormalized(r2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  2. cmd/iam.go

    	for parentUser, info := range parentUsers {
    		if !sys.LDAPConfig.IsLDAPUserDN(parentUser) {
    			continue
    		}
    
    		if info.subClaimValue != "" {
    			// we need to ask LDAP about the actual user DN not normalized DN.
    			allDistNames = append(allDistNames, info.subClaimValue)
    		} else {
    			allDistNames = append(allDistNames, parentUser)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    *  3: `tensor` is interpreted as RGB.
    *  4: `tensor` is interpreted as RGBA.
    
    The images have the same number of channels as the input tensor. For float
    input, the values are normalized one image at a time to fit in the range
    `[0, 255]`.  `uint8` values are unchanged.  The op uses two different
    normalization algorithms:
    
    *  If the input values are all positive, they are rescaled so the largest one
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. pkg/kubelet/status/status_manager_test.go

    		}
    		normalizeStatus(&pod, &oldPodStatus)
    		normalizeStatus(&pod, &podStatus)
    		if !isPodStatusByKubeletEqual(&oldPodStatus, &podStatus) {
    			t.Fatalf("Order of container statuses should not affect normalized equality.")
    		}
    	}
    
    	oldPodStatus := podStatus
    	podStatus.Conditions = append(podStatus.Conditions, v1.PodCondition{
    		Type:   v1.PodConditionType("www.example.com/feature"),
    		Status: v1.ConditionTrue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  5. cmd/sts-handlers_test.go

    				suite.TestLDAPCyrillicUser(c)
    				suite.TearDownSuite(c)
    			},
    		)
    	}
    }
    
    // This test is for a fix added to handle non-normalized base DN values in the
    // LDAP configuration. It runs the existing LDAP sub-tests with a non-normalized
    // LDAP configuration.
    func TestIAMWithLDAPNonNormalizedBaseDNConfigServerSuite(t *testing.T) {
    	for i, testCase := range iamTestSuites {
    		t.Run(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  6. src/time/time.go

    // daylight savings time transitions.
    //
    // AddDate normalizes its result in the same way that Date does,
    // so, for example, adding one month to October 31 yields
    // December 1, the normalized form for November 31.
    func (t Time) AddDate(years int, months int, days int) Time {
    	year, month, day := t.Date()
    	hour, min, sec := t.Clock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/net/http/request.go

    	}
    	u, err := urlpkg.Parse(url)
    	if err != nil {
    		return nil, err
    	}
    	rc, ok := body.(io.ReadCloser)
    	if !ok && body != nil {
    		rc = io.NopCloser(body)
    	}
    	// The host's colon:port should be normalized. See Issue 14836.
    	u.Host = removeEmptyPort(u.Host)
    	req := &Request{
    		ctx:        ctx,
    		Method:     method,
    		URL:        u,
    		Proto:      "HTTP/1.1",
    		ProtoMajor: 1,
    		ProtoMinor: 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. cmd/admin-handlers-users.go

    			return
    		}
    	}
    
    	userType := regUser
    	if globalIAMSys.GetUsersSysType() == LDAPUsersSysType {
    		userType = stsUser
    
    		// Validate that the user or group exists in LDAP and use the normalized
    		// form of the entityName (which will be an LDAP DN).
    		var err error
    		if isGroup {
    			var foundGroupDN *xldap.DNSearchResult
    			var underBaseDN bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	input := &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "test-ns"}}
    	key := computePodKey(input)
    
    	// serialize input into etcd with data that would be normalized by a write -
    	// in this case, leading whitespace
    	revertTransformer := store.UpdatePrefixTransformer(
    		func(transformer *PrefixTransformer) value.Transformer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top