Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,990 for cgoUse (0.11 sec)

  1. docs/integrations/veeam/README.md

    For Veeam Backup with Immutability, choose the amount of days you want to make backups immutable for
    
    ![Choose Immutability Days for Object Store](https://raw.githubusercontent.com/minio/minio/master/docs/integrations/veeam/screenshots/object_store_immutable_days.png)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

        server.listener.assertExhausted()
        server.source.close()
        client.source.close()
        taskFaker.runTasks()
        server.webSocket!!.tearDown()
        client.webSocket!!.tearDown()
        taskFaker.close()
      }
    
      @Test
      fun close() {
        client.webSocket!!.close(1000, "Hello!")
        // This will trigger a close response.
        assertThat(server.processNextFrame()).isFalse()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. test/float_lit.go

    	}
    	return false
    }
    
    func main() {
    	if !close(0., 0, 1, 0) {
    		print("0. is ", 0., "\n")
    	}
    	if !close(+10., 10, 1, 0) {
    		print("+10. is ", +10., "\n")
    	}
    	if !close(-210., -210, 1, 0) {
    		print("-210. is ", -210., "\n")
    	}
    
    	if !close(.0, 0, 1, 0) {
    		print(".0 is ", .0, "\n")
    	}
    	if !close(+.01, 1, 100, 0) {
    		print("+.01 is ", +.01, "\n")
    	}
    	if !close(-.012, -12, 1000, 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 4K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

                cacheAccess.close()
            }
    
            then:
            def e = thrown(IllegalStateException)
            e.message == 'Cannot close cache access for <cache> as it is currently in use for 1 operations.'
            0 * _
    
            when:
            cacheAccess.close()
    
            then:
            1 * lock.close()
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. src/runtime/mfinal_test.go

    		{func(x *int) any { return (*Tint)(x) }, func(v Tinter) { finalize((*int)(v.(*Tint))) }},
    		// Test case for argument spill slot.
    		// If the spill slot was not counted for the frame size, it will (incorrectly) choose
    		// call32 as the result has (exactly) 32 bytes. When the argument actually spills,
    		// it clobbers the caller's frame (likely the return PC).
    		{func(x *int) any { return x }, func(v any) [4]int64 {
    			print() // force spill
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. docs/fr/docs/help-fastapi.md

    Vous pouvez alors essayer de les aider à résoudre ces problèmes.
    
    ## Créer une Issue
    
    Vous pouvez <a href="https://github.com/tiangolo/fastapi/issues/new/choose" class="external-link" target="_blank">créer une Issue</a> dans le dépôt GitHub, par exemple pour :
    
    * Poser une question ou s'informer sur un problème.
    * Suggérer une nouvelle fonctionnalité.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 08:39:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. src/net/sendfile_test.go

    	}
    }
    
    func TestSendfile(t *testing.T) {
    	ln := newLocalListener(t, "tcp")
    	defer ln.Close()
    
    	errc := make(chan error, 1)
    	go func(ln Listener) {
    		// Wait for a connection.
    		conn, err := ln.Accept()
    		if err != nil {
    			errc <- err
    			close(errc)
    			return
    		}
    
    		go func() {
    			defer close(errc)
    			defer conn.Close()
    
    			f, err := os.Open(newton)
    			if err != nil {
    				errc <- err
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/net/unixsock_test.go

    		f.Close()
    		checkExists(t, "after File close")
    		l1.Close()
    		checkExists(t, "after FileListener close")
    		l.Close()
    		checkNotExists(t, "after Listener close")
    	})
    
    	// Only first call to l.Close should remove.
    	t.Run("SecondClose", func(t *testing.T) {
    		l := listen(t)
    		checkExists(t, "after Listen")
    		l.Close()
    		checkNotExists(t, "after Listener close")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultFileLockManagerWithNewProtocolTest.groovy

            def beforeAccess = lock.state
            lock.close()
    
            and:
            lock = createLock(lockMode, testFile, lockManager)
            lock.readFile {}
            lock.close()
    
            when:
            lock = createLock(lockMode)
    
            then:
            !lock.state.hasBeenUpdatedSince(beforeAccess)
    
            cleanup:
            lock?.close()
    
            where:
            lockMode << [Exclusive, Shared]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cgo_asm_error.txt

    [!cgo] skip
    
    # Test that cgo package can't contain a go assembly file.
    
    # Ensure the build fails and reports that the package has a Go assembly file.
    ! go build cgoasm
    stderr 'package using cgo has Go assembly file'
    
    -- go.mod --
    module cgoasm
    
    go 1.16
    -- p.go --
    package p
    
    /*
    // hi
    */
    import "C"
    
    func F() {}
    -- p.s --
    TEXT asm(SB),$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 343 bytes
    - Viewed (0)
Back to top