Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Requirements (0.25 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		}
    	}
    
    	var requirements strings.Builder
    	fmt.Fprintf(&requirements, "%*sRequirements:", indent+2, "")
    	for i, r := range re.Requirements {
    		requirements.WriteByte('\n')
    		requirements.WriteString(r.goString(indent+4, fmt.Sprintf("%d: ", i)))
    	}
    
    	return fmt.Sprintf("%*s%sRequirements:\n%s\n%s", indent, "", field,
    		params.String(), requirements.String())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // 'go help mod init' or https://golang.org/ref/mod#go-mod-init.
    //
    // To add missing module requirements or remove unneeded requirements,
    // use 'go mod tidy'. For details, see 'go help mod tidy' or
    // https://golang.org/ref/mod#go-mod-tidy.
    //
    // To add, upgrade, downgrade, or remove a specific module requirement, use
    // 'go get'. For details, see 'go help module-get' or
    // https://golang.org/ref/mod#go-get.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    	SHF_STRINGS          SectionFlag = 0x20       /* Section contains strings. */
    	SHF_INFO_LINK        SectionFlag = 0x40       /* sh_info holds section index. */
    	SHF_LINK_ORDER       SectionFlag = 0x80       /* Special ordering requirements. */
    	SHF_OS_NONCONFORMING SectionFlag = 0x100      /* OS-specific processing required. */
    	SHF_GROUP            SectionFlag = 0x200      /* Member of section group. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    }
    
    //===----------------------------------------------------------------------===//
    // SelectOp
    //===----------------------------------------------------------------------===//
    
    // Verifies a few extra requirements on SelectOp:
    // (1) `then` and `else` must have same shape
    // (2) At least one of the following must be true:
    //     (a) `cond` has the same rank as `then` and `else`
    //     (b) `cond` is a scalar
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    			return fmt.Errorf("loading compiled Go files from cache: %w", err)
    		}
    		need &^= needCompiledGoFiles
    	}
    	if need == 0 {
    		// Nothing left to do.
    		return nil
    	}
    
    	// Collect symbol ABI requirements from assembly.
    	symabis, err := BuildToolchain.symabis(b, a, sfiles)
    	if err != nil {
    		return err
    	}
    
    	// Prepare Go import config.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

         * read operations in Map. For example, no operation can reveal that the table has grown but the
         * threshold has not yet been updated, so there are no atomicity requirements for this with
         * respect to reads.
         *
         * As a guide, all critical volatile reads and writes to the count field are marked in code
         * comments.
         */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    		// detector to be invoked before it has been initialized. Note
    		// the use of "regonly" instead of just ignoring the package
    		// completely-- we do this due to the requirements of the
    		// package ID numbering scheme. See the comment in
    		// $GOROOT/src/internal/coverage/pkid.go dealing with
    		// hard-coding of runtime package IDs.
    		cmode := cfg.BuildCoverMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

         * read operations in Map. For example, no operation can reveal that the table has grown but the
         * threshold has not yet been updated, so there are no atomicity requirements for this with
         * respect to reads.
         *
         * As a guide, all critical volatile reads and writes to the count field are marked in code
         * comments.
         */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

          limits:
          - resource: memory
            base: ${FLUENTD_GCP_MEMORY_LIMIT:-}
    EOF
    }
    
    # Trigger background process that will ultimately update fluentd resource
    # requirements.
    function start-fluentd-resource-update {
      wait-for-apiserver-and-update-fluentd &
    }
    
    # VolumeSnapshot CRDs and controller are installed by cluster addon manager,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

              os << str.getValue();
            }
          }
          os << "\n";
        }
      }
    }
    
    // For exported functions with bound inputs, rewrite the function
    // signature to match the requirements of tf_saved_model bound input args.
    //
    // The raw imported functions have `tensor<*x!tf_type.resource>` as the type for
    // mutable bound inputs and `tensor<...>` as the type for immutable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top