Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for DETAILS (0.18 sec)

  1. src/cmd/go/alldocs.go

    //
    //	-exec xprog
    //	    Run the test binary using xprog. The behavior is the same as
    //	    in 'go run'. See 'go help run' for details.
    //
    //	-json
    //	    Convert test output to JSON suitable for automated processing.
    //	    See 'go doc test2json' for the encoding details.
    //
    //	-o file
    //	    Compile the test binary to the named file.
    //	    The test still runs (unless -c or -i is specified).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

        // Used by generated code, see ^
        @SuppressWarnings("unused")
        public static ManagedObjectFactory getFactoryForNext() {
            ObjectCreationDetails details = SERVICES_FOR_NEXT_OBJECT.get();
            return new ManagedObjectFactory(details.services, details.instantiator, details.roleHandler);
        }
    
        private AsmBackedClassGenerator(
            boolean decorate, String suffix,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    	for id, rl := range newRMap {
    		// if rule is already in original list update non tranisition details with latest
    		// else simply add to the map. This may happen if ILM expiry replication
    		// was disabled for sometime and rules were updated independently in different
    		// sites. Latest changes would get applied but merge only the non transition details
    		if existingRl, ok := rMap[id]; ok {
    			clonedRl := rl.CloneNonTransition()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    //
    // The current approach:
    //
    // This approach applies to three primary sources of potential work: readying a
    // goroutine, new/modified-earlier timers, and idle-priority GC. See below for
    // additional details.
    //
    // We unpark an additional thread when we submit work if (this is wakep()):
    // 1. There is an idle P, and
    // 2. There are no "spinning" worker threads.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    				}
    			}
    		})
    	}
    }
    
    func isQualifiedResource(err error, kind, group string) bool {
    	if err.(errors.APIStatus).Status().Details.Kind != kind || err.(errors.APIStatus).Status().Details.Group != group {
    		return false
    	}
    	return true
    }
    
    func updateAndVerify(t *testing.T, ctx context.Context, registry *Store, pod *example.Pod) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                    implementation('org:foo:[1.0,)') ${type == 'dependency' ? attributes : ''}
    
                    components.all { details ->
                       attributes {
                          def colors = ['1.0' : 'blue', '1.1': 'green', '1.2': 'red']
                          attribute(COLOR, colors[details.id.version])
                       }
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // lowered to fused `tfl.fully_connected`.
    // This case covers for the following quantization patterns because
    // activation clipping ranges take affect in scale and zp of the final
    // `stablehlo.uniform_quantize`. See more details in b/319168201.
    // * dot_general_fn
    // * dot_general_with_relu_fn
    // * dot_general_with_relu6_fn
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        for (auto const& op_detail : op_name_and_details.second) {
          values.push_back(op_detail);
        }
      }
    
      os << summary_title << " ops: " << absl::StrJoin(keys, ", ") << "\n";
      os << "Details:\n\t" << absl::StrJoin(values, "\n\t");
    
      return os.str();
    }
    
    template <typename T>
    static bool HasValidTFLiteType(Value value, T& error_handler) {
      // None type is allowed to represent unspecified operands.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. src/net/http/server.go

    //     This change mostly affects how paths with %2F escapes adjacent to slashes are treated.
    //     See https://go.dev/issue/21955 for details.
    type ServeMux struct {
    	mu       sync.RWMutex
    	tree     routingNode
    	index    routingIndex
    	patterns []*pattern  // TODO(jba): remove if possible
    	mux121   serveMux121 // used only when GODEBUG=httpmuxgo121=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. cmd/metrics-v2.go

    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"fmt"
    	"math"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
Back to top