Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 257 for physical (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    // TPU cluster.
    // TPU_REPLICATED_HOST_{core} is the host that corresponds to the TPU core.
    // Different TPU_REPLICATED_HOST_*s can map to the same physical host within the
    // same replica. Also, TPU_REPLICATE_HOST_{core} in different replicas can map
    // to the same physical host. For example, if there are 2 hosts, num_replicas=8,
    // and num_cores_per_replica=2, then all cores in the first 4 replicas will map
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/amd64/versions_test.go

    		if physicalEdits[a] {
    			b = 0xcc // INT3 opcode
    			done++
    		}
    		err = w.WriteByte(b)
    		if err != nil {
    			t.Fatal("can't write")
    		}
    		a++
    	}
    	if done != len(physicalEdits) {
    		t.Fatal("physical edits remaining")
    	}
    	w.Flush()
    	f.Close()
    }
    
    func setOf(keys ...string) map[string]bool {
    	m := make(map[string]bool, len(keys))
    	for _, key := range keys {
    		m[key] = true
    	}
    	return m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasIDIVA    bool // Integer divide instruction support in ARM mode
    	HasIDIVT    bool // Integer divide instruction support in Thumb mode
    	HasVFPD32   bool // Vector floating point version 3 D15-D31
    	HasLPAE     bool // Large Physical Address Extensions
    	HasEVTSTRM  bool // Event stream support
    	HasAES      bool // AES hardware implementation
    	HasPMULL    bool // Polynomial multiplication instruction set
    	HasSHA1     bool // SHA1 hardware implementation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_en.properties

    labels.user_pager=Pager
    labels.pager=Pager
    labels.user_street=Street
    labels.street=Street
    labels.user_postalCode=Postal Code
    labels.postalCode=Postal Code
    labels.user_physicalDeliveryOfficeName=Physical Delivery Office Name
    labels.physicalDeliveryOfficeName=Physical Delivery Office Name
    labels.user_destinationIndicator=Destination Indicator
    labels.destinationIndicator=Destination Indicator
    labels.user_internationaliSDNNumber=International ISDN Number
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

        }
    
        private fun KaSession.getSymbolsFromPackageScope(fqName: FqName, contextElement: KtElement): Collection<KaDeclarationSymbol> {
            //ensure file context is provided for "non-physical" code as well
            val contextDeclarationOrSelf = PsiTreeUtil.getContextOfType(contextElement, KtDeclaration::class.java, false)
                ?: contextElement
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. tensorflow/c/eager/custom_device_test.cc

      ASSERT_NE(TF_OK, TF_GetCode(status.get()));
      ASSERT_TRUE(absl::StrContains(TF_Message(status.get()), custom0));
      ASSERT_TRUE(absl::StrContains(TF_Message(status.get()), custom1));
    
      // Custom device: mix of custom/physical places the op on the custom device.
      matmul.reset(MatMulOp(context.get(), hcustom0.get(), hcpu.get()));
      num_retvals = 1;
      executed = false;
      TFE_Execute(matmul.get(), &retval, &num_retvals, status.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 23:39:24 UTC 2020
    - 18.4K bytes
    - Viewed (0)
  7. src/runtime/os_linux.go

    	if ret < 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    }
    
    const (
    	_AT_NULL     = 0  // End of vector
    	_AT_PAGESZ   = 6  // System physical page size
    	_AT_PLATFORM = 15 // string identifying platform
    	_AT_HWCAP    = 16 // hardware capability bit vector
    	_AT_SECURE   = 23 // secure mode boolean
    	_AT_RANDOM   = 25 // introduced in 2.6.29
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/DES.java

    // NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE
    // SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF THE
    // SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE
    // PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH RISK ACTIVITIES").  WIDGET WORKSHOP
    // SPECIFICALLY DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR
    // HIGH RISK ACTIVITIES.
    //
    //
    // The rest is:
    //
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	// there's no point unless we're also returning the physical memory for these
    	// metadata mappings back to the OS. That would be quite complex to do in general
    	// as the heap is likely fragmented after a reduction in heap size.
    	minHeapForMetadataHugePages = 1 << 30
    )
    
    // physPageSize is the size in bytes of the OS's physical pages.
    // Mapping and unmapping operations must be done at multiples of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.properties

    labels.user_pager=Pager
    labels.pager=Pager
    labels.user_street=Street
    labels.street=Street
    labels.user_postalCode=Postal Code
    labels.postalCode=Postal Code
    labels.user_physicalDeliveryOfficeName=Physical Delivery Office Name
    labels.physicalDeliveryOfficeName=Physical Delivery Office Name
    labels.user_destinationIndicator=Destination Indicator
    labels.destinationIndicator=Destination Indicator
    labels.user_internationaliSDNNumber=International ISDN Number
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
Back to top