Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for associateBy (7.31 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_not_found_on_file_system = "{errors.not_found_on_file_system}";
    
        /** The key of the message: Could not open {0}. <br/>Please check if the file is associated with an application. */
        public static final String ERRORS_could_not_open_on_system = "{errors.could_not_open_on_system}";
    
        /** The key of the message: No more results could be displayed. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	DF_1_GROUP DynFlag1 = 0x00000004
    	// Indicates that the object cannot be deleted from a process.
    	DF_1_NODELETE DynFlag1 = 0x00000008
    	// Meaningful only for filters. Indicates that all associated filtees be
    	// processed immediately.
    	DF_1_LOADFLTR DynFlag1 = 0x00000010
    	// Indicates that this object's initialization section be run before any other
    	// objects loaded.
    	DF_1_INITFIRST DynFlag1 = 0x00000020
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Returns opcode index for op identified by the op_name, if already
      // available. Otherwise, creates a new OperatorCode using the given `builtin`
      // operator and associates it with `op_name`.
      uint32_t GetOpcodeIndex(const std::string& op_name,
                              tflite::BuiltinOperator builtin);
    
      // Builds operator for the given operation with specified operand and result
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

            TF_RET_CHECK(iter != host_compute_nodes.end());
            graph_out->AddControlEdge(iter->second, host_compute_node);
          }
        }
      }
    
      // Handle nodes with associated functions.
      Graph* g = (*has_outside_compilation) ? graph_out.get() : fbody->graph;
      TF_RETURN_IF_ERROR(ExtractOutsideCompilationForNodesWithAssociatedFunctions(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	if err != nil {
    		return nil, err
    	}
    	klet.runtimeCache = runtimeCache
    
    	// common provider to get host file system usage associated with a pod managed by kubelet
    	hostStatsProvider := stats.NewHostStatsProvider(kubecontainer.RealOS{}, func(podUID types.UID) string {
    		return getEtcHostsPath(klet.getPodDir(podUID))
    	}, podLogsDirectory)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

            GetInOutDimensions(op, dimension_numbers);
        const auto [stride_height, stride_width] = GetStrides(op);
    
        // Reference: https://arxiv.org/pdf/1603.07285.pdf
        // Section 4.6 > Relationship 13 states an associated transposed
        // convolution should have `s = 1`.
        // For `VALID` padding, the condition below will always hold true.
        // For `SAME` padding, express via regular convolution.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        auto stateful_str = mlir::TF::TensorFlowDialect::GetStatefulAttrName();
        attributes.push_back(
            builder_.getNamedAttr(stateful_str, builder_.getUnitAttr()));
      }
    
      // Checks for an associated custom gradient function. Adds it to the attribute
      // list of this function.
      auto grad_func_name = func_lib.FindGradient(std::string(func_name));
      if (!grad_func_name.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	1326: {region: 0x166, script: 0x5b, flags: 0x0},
    	1327: {region: 0x162, script: 0x5b, flags: 0x0},
    	1329: {region: 0x12c, script: 0x5b, flags: 0x0},
    }
    
    // likelyLangList holds lists info associated with likelyLang.
    // Size: 582 bytes, 97 elements
    var likelyLangList = [97]likelyScriptRegion{
    	0:  {region: 0x9d, script: 0x7, flags: 0x0},
    	1:  {region: 0xa2, script: 0x7a, flags: 0x2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

        ValueAndCloser(ClosingFuture<? extends V> closingFuture) {
          this.closingFuture = checkNotNull(closingFuture);
        }
    
        /**
         * Returns the final value of the associated {@link ClosingFuture}, or throws an exception as
         * {@link Future#get()} would.
         *
         * <p>Because the asynchronous operation has already completed, this method is synchronous and
         * returns immediately.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ClosingFuture.java

        ValueAndCloser(ClosingFuture<? extends V> closingFuture) {
          this.closingFuture = checkNotNull(closingFuture);
        }
    
        /**
         * Returns the final value of the associated {@link ClosingFuture}, or throws an exception as
         * {@link Future#get()} would.
         *
         * <p>Because the asynchronous operation has already completed, this method is synchronous and
         * returns immediately.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top