Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for emberi (0.56 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

            assert(files.map { it.name } == listOf("bar.txt", "foo.jar"))
        }
    }
    ----
    ======
    =====
    
    [[org_gradle_util_reports_deprecations]]
    ==== Deprecated members of the `org.gradle.util` package now report their deprecation
    
    These members will be removed in Gradle 9.0.
    
    * `Collection.stringize(Collection)`
    
    [[changes_8.6]]
    == Upgrading from 8.5 and earlier
    
    === Potential breaking changes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // Valid returns the validity of this page.
    // If this bit is 1, the subsequent members are valid; otherwise they should be ignored.
    func (b PSAPI_WORKING_SET_EX_BLOCK) Valid() bool {
    	return (b & 1) == 1
    }
    
    // ShareCount is the number of processes that share this page. The maximum value of this member is 7.
    func (b PSAPI_WORKING_SET_EX_BLOCK) ShareCount() uint64 {
    	return b.intField(1, 3)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // test case.  Only the last value for a given key is remembered.  These
      // are public static so they can be called from utility functions that are
      // not members of the test fixture.  Calls to RecordProperty made during
      // lifespan of the test (from the moment its constructor starts to the
      // moment its destructor finishes) will be output in XML as attributes of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      # (https://superuser.com/a/1160428/652018).
      $win_ver = New-Object -TypeName PSObject
      $win_ver | Add-Member -MemberType NoteProperty -Name Major -Value $(Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion' CurrentMajorVersionNumber).CurrentMajorVersionNumber
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    a:hover {
    	cursor: pointer;
    }
    
    img,
    object,
    embed {
    	max-width: 100%;
    	height: auto;
    }
    
    object,
    embed {
    	height: 100%;
    }
    
    img {
    	-ms-interpolation-mode: bicubic;
    }
    
    #map_canvas img,
    #map_canvas embed,
    #map_canvas object,
    .map_canvas img,
    .map_canvas embed,
    .map_canvas object {
    	max-width: none !important;
    }
    
    .left {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //     GTEST_OS_WINDOWS_MOBILE   - Windows Mobile
    //   GTEST_OS_ZOS      - z/OS
    //
    // Among the platforms, Cygwin, Linux, macOS, and Windows have the
    // most stable support.  Since core members of the Google Test project
    // don't have access to other platforms, support for them may be less
    // stable.  If you notice any problems on your platform, please notify
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. src/time/time.go

    	return absClock(t.abs())
    }
    
    // absClock is like clock but operates on an absolute time.
    //
    // absClock should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname absClock
    func absClock(abs uint64) (hour, min, sec int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

         * resource is a normal disk file directory,
         * <li>all available NetBIOS workgroups or domains if this resource is
         * the top level URL <code>smb://</code>,
         * <li>all servers registered as members of a NetBIOS workgroup if this
         * resource refers to a workgroup in a <code>smb://workgroup/</code> URL,
         * <li>all browseable shares of a server including printers, IPC
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  9. src/runtime/mgc.go

    // If you change the first four bytes, you must also change the write
    // barrier insertion code.
    //
    // writeBarrier should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname writeBarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	// podStoreSynced returns true if the pod store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	podStoreSynced cache.InformerSynced
    	// jobStoreSynced returns true if the job store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	jobStoreSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top