Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 687 for isInitialized (0.41 sec)

  1. cmd/lock-rest-server-common.go

    package cmd
    
    import (
    	"errors"
    )
    
    var (
    	errLockConflict       = errors.New("lock conflict")
    	errLockNotInitialized = errors.New("lock not initialized")
    	errLockNotFound       = errors.New("lock not found")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 973 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/audit/context_test.go

    	}{{
    		description: "no audit",
    		ctx:         context.Background(),
    		validator:   func(_ *testing.T, _ context.Context) {},
    	}, {
    		description: "context initialized, policy not evaluated",
    		// Audit context is initialized, but the policy has not yet been evaluated (no level).
    		// Annotations should be retained.
    		ctx: WithAuditContext(context.Background()),
    		validator: func(t *testing.T, ctx context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

                    }
    
                    // forces the service to be initialized immediately when configuration cache loads its cache
                    gradle.services.get(BuildEventListenerRegistryInternal).onOperationCompletion(outputProgress)
    
                    // forces the service to be initialized immediately
                    outputProgress.get()
                }
           """
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/runtime/cgo/mmap.go

    // any sanitizer interceptors. This supports using the memory
    // sanitizer with Go programs. The memory sanitizer only applies to
    // C/C++ code; this permits that code to see the Go code as normal
    // program addresses that have been initialized.
    
    // To support interceptors that look for both mmap and munmap,
    // also call the C library for munmap.
    
    //go:cgo_import_static x_cgo_mmap
    //go:linkname x_cgo_mmap x_cgo_mmap
    //go:linkname _cgo_mmap _cgo_mmap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/testdata/msan7.go

    package main
    
    // Test passing C struct to exported Go function.
    
    /*
    #include <stdint.h>
    #include <stdlib.h>
    
    // T is a C struct with alignment padding after b.
    // The padding bytes are not considered initialized by MSAN.
    // It is big enough to be passed on stack in C ABI (and least
    // on AMD64).
    typedef struct { char b; uintptr_t x, y; } T;
    
    extern void F(T);
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 834 bytes
    - Viewed (0)
  6. src/cmd/go/internal/gover/local.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package gover
    
    import (
    	"internal/goversion"
    	"runtime"
    	"strconv"
    )
    
    // TestVersion is initialized in the go command test binary
    // to be $TESTGO_VERSION, to allow tests to override the
    // go command's idea of its own version as returned by Local.
    var TestVersion string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:20:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ear.EarPluginConvention.xml

                    <td>libDirName</td>
                    <td><literal>'lib'</literal></td>
                </tr>
                <tr>
                    <td>deploymentDescriptor</td>
                    <td>A deployment descriptor initialized with sensible defaults</td>
                </tr>
                <tr>
                    <td>generateDeploymentDescriptor</td>
                    <td><literal>true</literal></td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/runtime/cgo/callbacks.go

    //go:linkname _cgo_bindm _cgo_bindm
    var x_cgo_bindm byte
    var _cgo_bindm = &x_cgo_bindm
    
    // Notifies that the runtime has been initialized.
    //
    // We currently block at every CGO entry point (via _cgo_wait_runtime_init_done)
    // to ensure that the runtime has been initialized before the CGO call is
    // executed. This is necessary for shared libraries where we kickoff runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

        this.journalFileBackup = directory / JOURNAL_FILE_BACKUP
      }
    
      @Synchronized
      @Throws(IOException::class)
      fun initialize() {
        this.assertThreadHoldsLock()
    
        if (initialized) {
          return // Already initialized.
        }
    
        // If a bkp file exists, use it instead.
        if (fileSystem.exists(journalFileBackup)) {
          // If journal file also exists just delete backup file.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  @see CU_get_registry
     *  @see CU_set_registry
     */
    
    CU_EXPORT CU_BOOL CU_registry_initialized(void);
    /**<
     *  Checks whether the test registry has been initialized.
     *
     *  @return  CU_TRUE if the registry has been initialized,
     *           CU_FALSE otherwise.
     *  @see CU_initialize_registry
     *  @see CU_cleanup_registry
     */
    
    CU_EXPORT 
    CU_pSuite CU_add_suite(const char *strName, 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top