Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 867 for need (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    While those conventions can be reconfigured, it makes it harder to build script users and authors to manage the build logic and its outcome.
    Try to stick to the default conventions as much as possible except if you need to adapt to the layout of a legacy project.
    Refer to the reference page of the relevant plugin to learn about its default conventions.
    
    [[sec:settings_file]]
    == Always define a settings file
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/deadcode.go

    					methods = append(methods, methodref{src: symIdx, r: i})
    					// The method descriptor is itself a type descriptor, and
    					// it can be used to reach other types, e.g. by using
    					// reflect.Type.Method(i).Type.In(j). We need to traverse
    					// its child types with UsedInIface set. (See also the
    					// comment below.)
    					rs := r.Sym()
    					if !d.ldr.AttrUsedInIface(rs) {
    						d.ldr.SetAttrUsedInIface(rs, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector.go

    	if err == enqueuedVirtualDeleteEventErr {
    		// a virtual event was produced and will be handled by processGraphChanges, no need to requeue this node
    		return forgetItem
    	} else if err == namespacedOwnerOfClusterScopedObjectErr {
    		// a cluster-scoped object referring to a namespaced owner is an error that will not resolve on retry, no need to requeue this node
    		return forgetItem
    	} else if err != nil {
    		if _, ok := err.(*restMappingError); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

            // already reported as configuration cache problem, no need to override
            delegate.buildFinished(closure)
    
        @Suppress("OVERRIDE_DEPRECATION", "DEPRECATION")
        override fun buildFinished(action: Action<in BuildResult>) =
            // already reported as configuration cache problem, no need to override
            delegate.buildFinished(action)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

                // to get the combined scope. A base declared member scope with Java enhancement doesn't exist, unfortunately.
                DeclaredMemberScopeKind.COMBINED -> {
                    // The static scope contains inner classes, so we need to exclude them from the non-static scope to avoid duplicates.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/settings.md

    # Settings and Environment Variables
    
    In many cases your application could need some external settings or configurations, for example secret keys, database credentials, credentials for email services, etc.
    
    Most of these settings are variable (can change), like database URLs. And many could be sensitive, like secrets.
    
    For this reason it's common to provide them in environment variables that are read by the application.
    
    ## Environment Variables
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/go/types/typestring.go

    			}
    			// If the type parameter name is the same as a predeclared object
    			// (say int), point out where it is declared to avoid confusing
    			// error messages. This doesn't need to be super-elegant; we just
    			// need a clear indication that this is not a predeclared name.
    			if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
    				if isTypes2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        } finally {
          notJar.delete();
        }
      }
    
      public void testGetClassPathEntry() throws MalformedURLException, URISyntaxException {
        if (isWindows()) {
          return; // TODO: b/136041958 - We need to account for drive letters in the path.
        }
        assertEquals(
            new File("/usr/test/dep.jar").toURI(),
            ClassPath.getClassPathEntry(new File("/home/build/outer.jar"), "file:/usr/test/dep.jar")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/ingress/controller.go

    		c.mutex.Unlock()
    		if ing == nil {
    			// It was a delete and we didn't have an existing known ingress, no action
    			return nil
    		}
    	}
    
    	// we should check need process only when event is not delete,
    	// if it is delete event, and previously processed, we need to process too.
    	if event != model.EventDelete {
    		shouldProcess := c.shouldProcessIngressUpdate(ing)
    		if !shouldProcess {
    			return nil
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    	for _, pp := range allp {
    		pp.trace.mSyscallID = -1
    	}
    
    	// Start tracing.
    	//
    	// Set trace.enabled. This is *very* subtle. We need to maintain the invariant that if
    	// trace.gen != 0, then trace.enabled is always observed as true. Simultaneously, for
    	// performance, we need trace.enabled to be read without any synchronization.
    	//
    	// We ensure this is safe by stopping the world, which acts a global barrier on almost
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top