Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 181 for room (0.06 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
            then:
            file('dest').assertHasDescendants(
                'root.renamed',
                'root.b',
                'accents.c',
                'one/renamed_one.renamed',
                'one/renamed_one.b',
                'one/sub/onesub.renamed',
                'one/sub/onesub.b',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                            final String lowerRoleDn = fessConfig.getLdapAdminRoleBaseDn().toLowerCase(Locale.ROOT);
                            processSearchRoles(result, (entryDn, name) -> {
                                final String lowerEntryDn = entryDn.toLowerCase(Locale.ROOT);
                                if (lowerEntryDn.indexOf(lowerGroupDn) != -1) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                    it.addReference("beanRef", Bean, registry.root.getLink("bean1"))
                    it.addReference("otherBeansRef", Bean, registry.root.getLink("otherBeans"))
                }
            }
    
            def scope = registry.root.getLink("beans")
            scope.applyToSelf(rules)
    
            expect:
            // Rule gets applied to node in scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    	// at a time. Used by special root marking.
    	//
    	// Higher values improve throughput by increasing locality, but
    	// increase the minimum latency of a marking operation.
    	//
    	// Must be a multiple of the pageInUse bitmap element size and
    	// must also evenly divide pagesPerArena.
    	pagesPerSpanRoot = 512
    )
    
    // gcMarkRootPrepare queues root scanning jobs (stacks, globals, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/math/big/int_test.go

    	n.Rand(rand.New(rand.NewSource(9)), n)
    }
    
    func TestSqrt(t *testing.T) {
    	root := 0
    	r := new(Int)
    	for i := 0; i < 10000; i++ {
    		if (root+1)*(root+1) <= i {
    			root++
    		}
    		n := NewInt(int64(i))
    		r.SetInt64(-2)
    		r.Sqrt(n)
    		if r.Cmp(NewInt(int64(root))) != 0 {
    			t.Errorf("Sqrt(%v) = %v, want %v", n, r, root)
    		}
    	}
    
    	for i := 0; i < 1000; i += 10 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    	sidecarsByNamespace map[string][]*SidecarScope
    	// the Sidecar for the root namespace (if present). This applies to any namespace without its own Sidecar.
    	meshRootSidecarConfig *config.Config
    	// meshRootSidecarsByNamespace contains the default sidecar for namespaces that do not have a sidecar.
    	// These are converted from root namespace sidecar if it exists.
    	// These are lazy-loaded. Access protected by derivedSidecarMutex.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          return failure();
    
        if (!(((*root.getODSResults(1).begin()).use_empty()))) {
          return rewriter.notifyMatchFailure(
              fused_batch_norm_op, [&](::mlir::Diagnostic &diag) {
                diag << "entities '' failed to satisfy constraint: has no use";
              });
        }
    
        if (!(((*root.getODSResults(2).begin()).use_empty()))) {
          return rewriter.notifyMatchFailure(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                    }
                    return language.toLowerCase(Locale.ROOT);
                }
                return null;
            }).toArray(n -> new String[n]));
        }
    
        default Locale getQueryLocaleFromName(final String name) {
            if (name == null) {
                return Locale.ROOT;
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. cmd/admin-handlers-users.go

    		return
    	}
    	if ok {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errIAMActionNotAllowed), r.URL)
    		return
    	}
    
    	// When the user is root credential you are not allowed to
    	// remove the root user. Also you cannot delete yourself.
    	if accessKey == globalActiveCred.AccessKey || accessKey == cred.AccessKey {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errIAMActionNotAllowed), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            when:
            def out = config.incoming.resolutionResult
    
            then:
            out.root == result.rootSource.get()
        }
    
        def "resolving configuration marks parent configuration as observed"() {
            def parent = conf("parent", ":parent")
            def config = conf("conf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top