Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 256 for HIDE (0.04 sec)

  1. android/guava/src/com/google/common/collect/ContiguousSet.java

      @Override
      public String toString() {
        return range().toString();
      }
    
      /**
       * Not supported. {@code ContiguousSet} instances are constructed with {@link #create}. This
       * method exists only to hide {@link ImmutableSet#builder} from consumers of {@code
       * ContiguousSet}.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Use {@link #create}.
       */
      @Deprecated
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

        std::cout << "NOT fuzzing: " << op_info.graph_op_def.name()
                  << " is deprecated.\n";
        return false;
      }
    
      // TODO(unda, b/249347507): should we hide fuzzers for hidden ops?
      if (op_info.api_def.visibility() == ApiDef::HIDDEN) {
        std::cout << "NOT fuzzing: " << op_info.graph_op_def.name()
                  << " is hidden.\n";
        return false;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/runtime/debug/mod.go

    	}
    
    	// The go version is stored separately from other build info, mostly for
    	// historical reasons. It is not part of the modinfo() string, and
    	// ParseBuildInfo does not recognize it. We inject it here to hide this
    	// awkwardness from the user.
    	bi.GoVersion = runtime.Version()
    
    	return bi, true
    }
    
    // BuildInfo represents the build information read from a Go binary.
    type BuildInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

        llvm::cl::desc("Wether serialize stablehlo ops or not"),
        llvm::cl::location(emit_stablehlo_ops), llvm::cl::init(false));
    
    // Flatbuffer import by default will also perform vhlo to stablehlo legalization
    // to hide serialization detail from user, but for debug purpose we need to be
    // able to dump raw vhlo ops as well
    // NOLINTNEXTLINE
    static opt<bool, true> disable_vhlo_to_stablehlo_flag(
        "disable-vhlo-to-stablehlo",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. src/go/types/methodset.go

    					m = nil // collision
    				}
    				if base == nil {
    					base = make(methodSet)
    				}
    				base[k] = m
    			}
    		}
    
    		// Add all (remaining) fields at this depth as collisions (since they will
    		// hide any method further down) if no entries with matching names exist already.
    		for k := range fset {
    			if _, found := base[k]; !found {
    				if base == nil {
    					base = make(methodSet)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. pkg/webhooks/validation/server/server.go

    		return toAdmissionResponse(fmt.Errorf("error decoding configuration: %v", err))
    	}
    
    	warnings, err := s.ValidateConfig(*out)
    	if err != nil {
    		if _, f := out.Annotations[constants.AlwaysReject]; !f {
    			// Hide error message if it was intentionally rejected (by our own internal call)
    			scope.Infof("configuration is invalid: %v", addDryRunMessageIfNeeded(err.Error()))
    		}
    		reportValidationFailed(request, reasonInvalidConfig, isDryRun)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ContiguousSet.java

      @Override
      public String toString() {
        return range().toString();
      }
    
      /**
       * Not supported. {@code ContiguousSet} instances are constructed with {@link #create}. This
       * method exists only to hide {@link ImmutableSet#builder} from consumers of {@code
       * ContiguousSet}.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Use {@link #create}.
       */
      @Deprecated
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. src/runtime/sys_solaris_amd64.s

    // Called from runtime·usleep (Go). Can be called on Go stack, on OS stack,
    // can also be called in cgo callback path without a g->m.
    TEXT runtime·usleep1(SB),NOSPLIT,$0
    	MOVL	usec+0(FP), DI
    	MOVQ	$usleep2<>(SB), AX // to hide from 6l
    
    	// Execute call on m->g0.
    	get_tls(R15)
    	CMPQ	R15, $0
    	JE	noswitch
    
    	MOVQ	g(R15), R13
    	CMPQ	R13, $0
    	JE	noswitch
    	MOVQ	g_m(R13), R13
    	CMPQ	R13, $0
    	JE	noswitch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            void run() throws E;
        }
    
        /**
         * Turns a {@link ThrowingFactory} into a {@link Factory}.
         * The compiler is happy with the casting that allows to hide the checked exception.
         * The runtime is happy with the casting because the checked exception type information is captured in a generic type parameter which gets erased.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. docs/en/docs/fastapi-people.md

    ---
    hide:
      - navigation
    ---
    
    # FastAPI People
    
    FastAPI has an amazing community that welcomes people from all backgrounds.
    
    ## Creator
    
    Hey! 👋
    
    This is me:
    
    {% if people %}
    <div class="user-list user-list-center">
    {% for user in people.maintainers %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top