Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for internally (0.3 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProvider.java

    import org.gradle.api.internal.attributes.AttributeContainerInternal;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.internal.action.InstantiatingAction;
    import org.gradle.internal.component.external.model.ExternalComponentResolveMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	}
    
    	return db.pingDC(ctx, dc, dc.releaseConn)
    }
    
    // Ping verifies a connection to the database is still alive,
    // establishing a connection if necessary.
    //
    // Ping uses [context.Background] internally; to specify the context, use
    // [DB.PingContext].
    func (db *DB) Ping() error {
    	return db.PingContext(context.Background())
    }
    
    // Close closes the database and prevents new queries from starting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. pkg/scheduler/util/utils.go

    func DeletePod(ctx context.Context, cs kubernetes.Interface, pod *v1.Pod) error {
    	return cs.CoreV1().Pods(pod.Namespace).Delete(ctx, pod.Name, metav1.DeleteOptions{})
    }
    
    // ClearNominatedNodeName internally submit a patch request to API server
    // to set each pods[*].Status.NominatedNodeName> to "".
    func ClearNominatedNodeName(ctx context.Context, cs kubernetes.Interface, pods ...*v1.Pod) utilerrors.Aggregate {
    	var errs []error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

    //
    // The Google C++ Testing Framework (Google Test)
    //
    // This header file declares the String class and functions used internally by
    // Google Test.  They are subject to change without notice. They should not used
    // by code external to Google Test.
    //
    // This header file is #included by <gtest/internal/gtest-internal.h>.
    // It should not be #included by other files.
    
    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <!-- Don't require api docs for projects only used internally -->
        <suppress checks="Javadoc.*"
                  files=".*[/\\]internal-.+[/\\]src[/\\]main[/\\].+"/>
    
        <!-- JavaScript plugin is incubating -->
        <suppress checks="Javadoc.*"
                  files=".*[/\\]javascript[/\\].+"/>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

    //
    // The Google C++ Testing Framework (Google Test)
    //
    // This header file declares the String class and functions used internally by
    // Google Test.  They are subject to change without notice. They should not used
    // by code external to Google Test.
    //
    // This header file is #included by <gtest/internal/gtest-internal.h>.
    // It should not be #included by other files.
    
    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go

    func lock(f File, lt lockType) (err error) {
    	// POSIX locks apply per inode and process, and the lock for an inode is
    	// released when *any* descriptor for that inode is closed. So we need to
    	// synchronize access to each inode internally, and must serialize lock and
    	// unlock calls that refer to the same inode through different descriptors.
    	fi, err := f.Stat()
    	if err != nil {
    		return err
    	}
    	ino := fi.Sys().(*syscall.Stat_t).Ino
    
    	mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. src/net/file_test.go

    		case *TCPListener:
    			f, err = ln1.File()
    		case *UnixListener:
    			f, err = ln1.File()
    		}
    		switch tt.network {
    		case "unix", "unixpacket":
    			defer ln1.Close() // UnixListener.Close calls syscall.Unlink internally
    		default:
    			if err := ln1.Close(); err != nil {
    				t.Error(err)
    			}
    		}
    		if err != nil {
    			if perr := parseCommonError(err); perr != nil {
    				t.Error(perr)
    			}
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. src/runtime/debugcall.go

    		mp := gp.m
    		if mp != gp.lockedm.ptr() {
    			throw("inconsistent lockedm")
    		}
    		// Save the external lock count and clear it so
    		// that it can't be unlocked from the debug call.
    		// Note: we already locked internally to the thread,
    		// so if we were locked before we're still locked now.
    		lockedExt = mp.lockedExt
    		mp.lockedExt = 0
    
    		mp.lockedg.set(newg)
    		newg.lockedm.set(mp)
    		gp.lockedm = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheBuilder.java

        return (initialCapacity == UNSET_INT) ? DEFAULT_INITIAL_CAPACITY : initialCapacity;
      }
    
      /**
       * Guides the allowed concurrency among update operations. Used as a hint for internal sizing. The
       * table is internally partitioned to try to permit the indicated number of concurrent updates
       * without contention. Because assignment of entries to these partitions is not necessarily
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top