Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,879 for forSet (0.33 sec)

  1. hack/update-vendor.sh

    options:
      # make root approval non-recursive
      no_parent_owners: true
    approvers:
    - dep-approvers
    reviewers:
    - dep-reviewers
    __EOF__
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
                configurations {
                    conf
                    forced {
                        extendsFrom conf
                    }
                    substituted {
                        extendsFrom conf
                    }
                }
                configurations.forced.resolutionStrategy.force 'org:leaf:1.0'
                configurations.substituted.resolutionStrategy.dependencySubstitution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. maven-compat/src/main/resources/META-INF/maven/plugin.xml

      <isolatedRealm>false</isolatedRealm>
      <inheritedByDefault>true</inheritedByDefault>
      <mojos>
        <mojo>
          <goal>start-fork</goal>
          <description>Setup the appropriate build state to initiate a forked execution.</description>
          <requiresDirectInvocation>false</requiresDirectInvocation>
          <requiresProject>false</requiresProject>
          <requiresReports>false</requiresReports>
          <aggregator>false</aggregator>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                case REQUESTED:
                    return "Was requested";
                case SELECTED_BY_RULE:
                    return "Selected by rule";
                case FORCED:
                    return "Forced";
                case CONFLICT_RESOLUTION:
                    return "By conflict resolution";
                case COMPOSITE_BUILD:
                    return "By composite build";
                case REJECTION:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. src/net/http/example_test.go

    			return
    		}
    		conn, bufrw, err := hj.Hijack()
    		if err != nil {
    			http.Error(w, err.Error(), http.StatusInternalServerError)
    			return
    		}
    		// Don't forget to close the connection:
    		defer conn.Close()
    		bufrw.WriteString("Now we're speaking raw TCP. Say hi: ")
    		bufrw.Flush()
    		s, err := bufrw.ReadString('\n')
    		if err != nil {
    			log.Printf("error reading string: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 16:12:45 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  6. src/runtime/extern.go

    	mark and scan, and STW mark termination. The CPU times
    	for mark/scan are broken down in to assist time (GC performed in
    	line with allocation), background GC time, and idle GC time.
    	If the line ends with "(forced)", this GC was forced by a
    	runtime.GC() call.
    
    	harddecommit: setting harddecommit=1 causes memory that is returned to the OS to
    	also have protections removed on it. This is the only mode of operation on Windows,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencySubstitutions.java

         * The rules are evaluated in order they are declared. Rules are evaluated after forced modules are applied (see {@link ResolutionStrategy#force(Object...)}
         *
         * @return this
         */
        DependencySubstitutions all(Action<? super DependencySubstitution> rule);
    
        /**
         * Create a ModuleComponentSelector from the provided input string. Strings must be in the format "{group}:{module}:{version}".
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 24 20:12:31 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/PatternFilenameFilter.java

       * return type is plain FilenameFilter. If we made such a change, then the annotation we choose
       * here would have no significance to end users, who would be forced to conform to the signature
       * used in FilenameFilter.)
       */
      @Override
      public boolean accept(File dir, String fileName) {
        return pattern.matcher(fileName).matches();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.cc

          break;
        // Note: This is weight-only quantization by default, but with the legacy
        // flag "--force_dynamic_range_in_kernel", a DRQ behavior will be forced
        // in the kernel.
        case PresetQuantizationMethod::WEIGHT_ONLY:
          weight_component = custom_method.add_quantization_component_spec();
          SetQuantizationComponentSpec(weight_component,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/policy_test.go

    			expectedMandatoryErrs: 1, // can't downgrade two minor versions
    		},
    		{
    			name: "kubeadm version must be higher than the new kube version. However, patch version skews may be forced",
    			vg: &fakeVersionGetter{
    				clusterVersion: minimumControlPlaneVersion.WithPatch(3).String(),
    				kubeletVersion: minimumKubeletVersion.WithPatch(3).String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top