Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,991 for useN (0.9 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

    configurations.compile.withDependencies {
        throw new RuntimeException("Bad user code")
    }
    """
    
            then:
            resolve.prepare()
            fails ":checkDeps"
    
            failure.assertHasCause("Bad user code")
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "cannot add withDependencies rule after configuration has been used"() {
            when:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. src/net/url/url.go

    // Only the password in u.User is redacted.
    func (u *URL) Redacted() string {
    	if u == nil {
    		return ""
    	}
    
    	ru := *u
    	if _, has := ru.User.Password(); has {
    		ru.User = UserPassword(ru.User.Username(), "xxxxx")
    	}
    	return ru.String()
    }
    
    // Values maps a string key to a list of values.
    // It is typically used for query parameters and form values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  3. src/net/http/client.go

    // if deadline is non-zero. The RoundTripper's type is used to
    // determine whether the legacy CancelRequest behavior should be used.
    //
    // As background, there are three ways to cancel a request:
    // First was Transport.CancelRequest. (deprecated)
    // Second was Request.Cancel.
    // Third was Request.Context.
    // This function populates the second and third, and uses the first if it really needs to.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    // - if user-provided root CA is not found, the Secret "istio-ca-secret" is used, with ca-cert.pem and ca-key.pem files.
    // - if neither is found, istio-ca-secret will be created.
    //
    // - a config map "istio-security" with a "caTLSRootCert" file will be used for root cert, and created if needed.
    //   The config map was used by node agent - no longer possible to use in sds-agent, but we still save it for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

         * <p>
         * When true, the interactive dialog is skipped, and no user input is required to complete the command.
         * <p>
         * This property can be set via the command-line options '--use-defaults' and '--no-use-defaults'.
         *
         * @since 8.6
         */
        @Incubating
        @Input
        @Optional
        @Option(option = "use-defaults", description = "Use default values for options not configured explicitly")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

        auto users = LocalVarOp_resource(local_var).getUsers();
        if (llvm::all_of(users, [](const Operation *user) {
              return isa<TF::AssignVariableOp>(user) ||
                     isa<TF::DestroyResourceOp>(user);
            })) {
          for (auto user : llvm::make_early_inc_range(users)) user->erase();
          LocalVarOp_erase(local_var);
        }
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   }
    //
    //   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!");
    //
    // On the regular expressions used in death tests:
    //
    //   On POSIX-compliant systems (*nix), we use the <regex.h> library,
    //   which uses the POSIX extended regex syntax.
    //
    //   On other platforms (e.g. Windows), we only support a simple regex
    //   syntax implemented as part of Google Test.  This limited
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. cluster/common.sh

        get-kubeconfig-user-basicauth "${user}-basic-auth"
      fi
    }
    
    # Sets KUBE_USER and KUBE_PASSWORD to the username and password specified in
    # the kubeconfig section corresponding to $1.
    #
    # Args:
    #   $1 kubeconfig section to look for basic auth (eg: user or user-basic-auth).
    # Assumed vars:
    #   KUBE_ROOT
    # Vars set:
    #   KUBE_USER
    #   KUBE_PASSWORD
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/schema-extra-example.md

    0.99.0 (0.99.0 and above use the newer OpenAPI 3.1.0) when you used `example` or `examples` with any of the other utilities (`Query()`, `Body()`, etc.) those examples were not added to the JSON Schema that describes that data (not even to OpenAPI's own version of JSON Schema), they were added directly to the *path operation* declaration in OpenAPI (outside the parts of OpenAPI that use JSON Schema).
    
    But now that FastAPI 0.99.0 and above uses OpenAPI 3.1.0, that uses JSON Schema 2020-12, and...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   }
    //
    //   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!");
    //
    // On the regular expressions used in death tests:
    //
    //   On POSIX-compliant systems (*nix), we use the <regex.h> library,
    //   which uses the POSIX extended regex syntax.
    //
    //   On other platforms (e.g. Windows), we only support a simple regex
    //   syntax implemented as part of Google Test.  This limited
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top