Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for normalizeID (0.24 sec)

  1. cmd/iam.go

    	if isGroup {
    		dnValidator = sys.LDAPConfig.GetValidatedGroupDN
    	}
    
    	// map of normalized DN keys to original keys.
    	normalizedDNKeysMap := make(map[string][]string)
    	var collectedErrors []error
    	for k := range policyMap {
    		_, err := ldap.NormalizeDN(k)
    		if err != nil {
    			// not a valid DN, ignore.
    			continue
    		}
    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/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)
  3. 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)
  4. src/time/time.go

    // in some years this is a 24 hour shift. In others it's a 23 hour shift due to
    // 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)
  5. kotlin-js-store/yarn.lock

      integrity sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==
    
    normalize-path@^3.0.0, normalize-path@~3.0.0:
      version "3.0.0"
      resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
      integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Manifest files within `META-INF` are normalized to ignore comments, whitespace and order differences.
    Manifest attribute names are compared case-and-order insensitively.
    Manifest properties files are normalized according to <<#sec:property_file_normalization,Properties File Normalization>>.
    
    .Ignore `META-INF` manifest attributes
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. 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)
  8. src/syscall/syscall_windows.go

    	// path with the "\\?\" prefix after Fchdir is called.
    	// The downside is that APIs that do support it will parse the path and try to normalize it,
    	// when it's already normalized.
    	if len(path) >= 4 && path[0] == '\\' && path[1] == '\\' && path[2] == '?' && path[3] == '\\' {
    		path = path[4:]
    	}
    	return SetCurrentDirectory(&path[0])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    	}
    	return maxRecommendation
    }
    
    // normalizeDesiredReplicas takes the metrics desired replicas value and normalizes it based on the appropriate conditions (i.e. < maxReplicas, >
    // minReplicas, etc...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. 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)
Back to top