Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 691 for partially (0.24 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/group_version.go

    	"strings"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupResource specifies a Group and a Resource, but does not force a version.  This is useful for identifying
    // concepts during lookup stages without having partially valid types
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type GroupResource struct {
    	Group    string `json:"group" protobuf:"bytes,1,opt,name=group"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 04 09:55:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue5493.go

    		func() {
    			f1()
    		}()
    	}
    	runtime.SetFinalizer(&f1, func(f *func()) {
    		atomic.AddInt64(&count, -1)
    	})
    	go f2()
    	return nil
    }
    
    func main() {
    	// Does not work with gccgo, due to partially conservative GC.
    	// Try to enable when we have fully precise GC.
    	if runtime.Compiler == "gccgo" {
    		return
    	}
    	count = N
    	var wg sync.WaitGroup
    	wg.Add(N)
    	for i := 0; i < N; i++ {
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 05 21:11:31 UTC 2021
    - 953 bytes
    - Viewed (0)
  3. src/encoding/gob/decgen.go

    		}
    		if i >= len(slice) {
    			// This is a slice that we only partially allocated.
    			growSlice(v, &slice, length)
    		}
    		%[3]s
    	}
    	return true
    }
    `
    
    const trailer = `
    // growSlice is called for a slice that we only partially allocated,
    // to grow it up to length.
    func growSlice[E any](v reflect.Value, ps *[]E, length int) {
    	var zero E
    	s := *ps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:15:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. test/tinyfin.go

    // license that can be found in the LICENSE file.
    
    // Test finalizers work for tiny (combined) allocations.
    
    package main
    
    import (
    	"runtime"
    	"time"
    )
    
    func main() {
    	// Does not work on gccgo due to partially conservative GC.
    	// Try to enable when we have fully precise GC.
    	if runtime.Compiler == "gccgo" {
    		return
    	}
    	const N = 100
    	finalized := make(chan int32, N)
    	for i := 0; i < N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 18:57:18 UTC 2015
    - 1.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/test/groovy/org/gradle/api/internal/tasks/compile/BaseForkOptionsConverterTest.groovy

            then:
            javaForkOptions.minHeapSize == "128m"
            javaForkOptions.maxHeapSize == "1g"
            javaForkOptions.jvmArgs == ["-foo", "-bar"]
        }
    
        def "can convert a partially configured base fork options"() {
            BaseForkOptions baseForkOptions = new BaseForkOptions()
            baseForkOptions.memoryInitialSize = "128m"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/types.go

    	noCopy noCopy
    	value  uint32
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (u *Uint32) Load() uint32 {
    	return Load(&u.value)
    }
    
    // LoadAcquire is a partially unsynchronized version
    // of Load that relaxes ordering constraints. Other threads
    // may observe operations that precede this operation to
    // occur after it, but no operation that occurs after it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/convert_type_test.cc

      // Simple case of static shapes.
      EXPECT_EQ("tensor<4x8x16xi32>",
                ConvertToMlirString({4, 8, 16}, /*unknown_rank=*/false,
                                    DataType::DT_INT32));
    
      // Partially known shapes.
      EXPECT_EQ("tensor<?x27x?xbf16>",
                ConvertToMlirString({-1, 27, -1}, /*unknown_rank=*/false,
                                    DataType::DT_BFLOAT16));
    
      // Unranked shapes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/SourceIncludesResolver.java

             *
             * Note that {@link #getFiles()} may contain some files even if this method returns false. This means that the include was partially resolved.
             */
            boolean isComplete();
    
            Collection<IncludeFile> getFiles();
        }
    
        interface IncludeFile {
            boolean isQuotedInclude();
            String getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaPartiallyAppliedSymbol.kt

    import org.jetbrains.kotlin.analysis.api.signatures.KaVariableLikeSignature
    import org.jetbrains.kotlin.analysis.api.symbols.KaCallableSymbol
    
    /**
     * A callable symbol partially applied with receivers and type arguments. Essentially, this is a call that misses some information. For
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function_revival_state.h

    namespace tensorflow {
    
    // TFConcreteFunctionRevivalState wraps the state needed for building a
    // TF_ConcreteFunction. This is mainly used in PartiallyRevivedObjects, which
    // wraps partially constructed Function and Resource objects.
    struct TFConcreteFunctionRevivalState {
      // Index of the node in the SavedObjectGraph it was loaded from.
      int node_id;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top