Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,347 for need (0.05 sec)

  1. docs/en/docs/tutorial/security/simple-oauth2.md

        If you need to enforce it, use `OAuth2PasswordRequestFormStrict` instead of `OAuth2PasswordRequestForm`.
    
    * An optional `client_id` (we don't need it for our example).
    * An optional `client_secret` (we don't need it for our example).
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

      }
      return island;
    }
    
    // A struct that contains the operations in an island that need explicit control
    // dependencies added going into and out of the island to capture inter-island
    // dependencies properly.
    struct IslandSourcesAndSinks {
      // Sub-ops that need a control dependency going into the island. This includes
      // sub-ops that do not depend on other sub-ops in the island and functional
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/download.go

    	// There is a bit of a chicken-and-egg problem here: ideally we need to know
    	// which Go version to switch to to download the requested modules, but if we
    	// haven't downloaded the module's go.mod file yet the GoVersion field of its
    	// info struct is not yet populated.
    	//
    	// We also need to be careful to only print the info for each module once
    	// if the -json flag is set.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

                    // so we need to filter the variants
                    result = providesAllCapabilities(targetComponent, explicitRequestedCapabilities, capabilities);
                } else {
                    // we need to make sure the variants we consider provide the implicit capability
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformingAsyncArtifactListener.java

             */
            private boolean prepareInvocation() {
                synchronized (this) {
                    if (transformedSubject != null) {
                        // Already have a result, no need to execute
                        return false;
                    }
                }
                if (!artifact.getFileSource().isFinalized()) {
                    // No input artifact yet, should execute
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. pkg/registry/core/service/strategy.go

    			}
    		}
    	}
    
    	// If a user is switching to a type that doesn't need LoadBalancerClass AND they did not change
    	// this field, it is safe to drop it.
    	if canSetLoadBalancerClass(oldSvc) && !canSetLoadBalancerClass(newSvc) && sameLoadBalancerClass(oldSvc, newSvc) {
    		newSvc.Spec.LoadBalancerClass = nil
    	}
    
    	// If a user is switching to a type that doesn't need ExternalTrafficPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

      // it because it's a required attribute.
      op.setModule("");
      // Set the stablehlo main function as a symbol attribute. This is required
      // because we not only need this to look up the StableHLO function called by
      // XlaCallModule, but also need the symbol reference to prevent DCE from
      // removing the stablehlo functions from the top-level module.
      op->setAttr(kStablehloEntryFunctionAttrName, SymbolRefAttr::get(*main_func));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

            then:
            daemons.daemon.becomesIdle()
    
            and:
            daemons.daemon.log.contains(DaemonMessages.CANCELED_BUILD)
        }
    
        /**
         * When the daemon is started on *nix, we need to detach it from the terminal session of the parent process,
         * otherwise if a ctrl-c is entered on the terminal, it will kill all processes in the session.  This test compiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    * If only a small set of Groovy source files are changed, only the affected source files will be recompiled.
      Classes that don't need to be recompiled remain unchanged in the output directory.
      For example, if you only change a few Groovy test classes, you don't need to recompile all Groovy test source files — only the changed ones need to be recompiled.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  10. src/runtime/HACKING.md

    * Read-mostly variables where updates are protected by a lock. Within
      the locked region, reads do not need to be atomic, but the write
      does. Outside the locked region, reads need to be atomic.
    
    * Reads that only happen during STW, where no writes can happen during
      STW, do not need to be atomic.
    
    That said, the advice from the Go memory model stands: "Don't be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top