Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for freeAll (0.28 sec)

  1. src/runtime/mpallocbits.go

    	(*pageBits)(b).clear(i)
    }
    
    // free frees the range [i, i+n) of pages in the pallocBits.
    func (b *pallocBits) free(i, n uint) {
    	(*pageBits)(b).clearRange(i, n)
    }
    
    // freeAll frees all the bits of b.
    func (b *pallocBits) freeAll() {
    	(*pageBits)(b).clearAll()
    }
    
    // pages64 returns a 64-bit bitmap representing a block of 64 pages aligned
    // to 64 pages. The returned block of pages is the one containing the i'th
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc.go

    		} else {
    			// The range crosses at least one chunk boundary.
    			p.chunkOf(sc).free(si, pallocChunkPages-si)
    			p.scav.index.free(sc, si, pallocChunkPages-si)
    			for c := sc + 1; c < ec; c++ {
    				p.chunkOf(c).freeAll()
    				p.scav.index.free(c, 0, pallocChunkPages)
    			}
    			p.chunkOf(ec).free(0, ei+1)
    			p.scav.index.free(ec, 0, ei+1)
    		}
    	}
    	p.update(base, npages, true, false)
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4XCTest.groovy

                                freely inside your strings, which is great!
                                """
                            XCTAssertNotNil(longMessage.range(of: """
                                    Multi-line strings also let you write "quote marks"
                                    freely inside your strings, which is great!
                                    """))''')]
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4Test.groovy

                '''XCTAssertNotNil(getLongMessage().range(of: """
                                    Multi-line strings also let you write "quote marks"
                                    freely inside your strings, which is great!
                                    """))'''),
                testCase("testCodeWasCompiledWithSwift4Compiler",
                    """#if swift(>=5.0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4.groovy

                            line all of its own, and end it with three
                            quotes also on a line of their own.
                            Multi-line strings also let you write "quote marks"
                            freely inside your strings, which is great!
                            """
                }
            ''')]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. releasenotes/notes/mesh-expansion.yaml

           {{< /text >}}
    
           This removes `operator.istio.io/managed` labels from the associated Istio networking resources so that the Istio installer won't delete them. After this step, you can modify these resources freely.
    
        1. If `components.ingressGateways[name=istio-ingressgateway].k8s.service.ports` is overridden, add port 15012 to the list of ports:
    
           {{< text yaml >}}
                - port: 15012
                  targetPort: 15012
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalGroupFactory.java

    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Preserves identity of {@see OrdinalGroup} instances so there's a 1-to-1 mapping of ordinals to groups allowing groups
     * to be freely compared by identity.
     */
    @ServiceScope(Scope.Build.class)
    public class OrdinalGroupFactory {
    
        private final List<OrdinalGroup> groups = new ArrayList<>();
    
        public final OrdinalGroup group(int ordinal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/math/remainder.go

    // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
    //
    // Developed at SunPro, a Sun Microsystems, Inc. business.
    // Permission to use, copy, modify, and distribute this
    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    // __ieee754_remainder(x,y)
    // Return :
    //      returns  x REM y  =  x - [x/y]*y  as if in infinite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginBackgroundJobExecutors.java

         * The build configuration inputs are not recorded for the job.
         * For example, changes to the environment variables read by the job are not going to invalidate the configuration cache.
         * The job is also allowed to freely start external processes.
         *
         * @return an instance of Executor
         */
        Executor getUserJobExecutor();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift5.groovy

                            line all of its own, and end it with three
                            quotes also on a line of their own.
                            Multi-line strings also let you write "quote marks"
                            freely inside your strings, which is great!
                            """
                }
    
                public func getRawString() -> String {
                    let value = 42
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top