Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for unfortunate (0.36 sec)

  1. test/escape_reflect.go

    	return v.String()
    }
    
    // Unfortunate: should only escape to result.
    func interface1(x any) any { // ERROR "leaking param: x$"
    	v := reflect.ValueOf(x)
    	return v.Interface()
    }
    
    func interface2(x int) any {
    	v := reflect.ValueOf(x) // ERROR "x escapes to heap"
    	return v.Interface()
    }
    
    // Unfortunate: should not escape.
    func interface3(x int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeDependentBinariesResolutionStrategy.java

                    // Skip prebuilt libraries
                    if (libraryBinary instanceof NativeBinarySpecInternal) {
                        // Unfortunate cast! see LibraryBinaryLocator
                        state.dependencies.get(nativeBinary).add((NativeBinarySpecInternal) libraryBinary);
                    }
                }
                if (testSupport != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    func TestFuncProperties(t *testing.T) {
    	td := t.TempDir()
    	// td = "/tmp/qqq"
    	// os.RemoveAll(td)
    	// os.Mkdir(td, 0777)
    	testenv.MustHaveGoBuild(t)
    
    	// NOTE: this testpoint has the unfortunate characteristic that it
    	// relies on the installed compiler, meaning that if you make
    	// changes to the inline heuristics code in your working copy and
    	// then run the test, it will test the installed compiler and not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. docs/bucket/replication/README.md

    #### Rationale
    
    - SSE-C requires application to remember the keys for all GET/PUT operations, any unfortunate loss of keys would automatically mean the objects cannot be accessed anymore.
    - SSE-C is hardly adopted by most widely used applications, applications prefer server to manage the keys via SSE-KMS or SSE-S3.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

         * hopefully could avoid implementing Entry or ValueSetLink at all. (But note that that approach
         * requires us to define extra classes -- unfortunate under Android.) *Then* we could consider
         * lying about the fields below on the grounds that we always initialize them just after the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/LinkedHashMultimap.java

         * hopefully could avoid implementing Entry or ValueSetLink at all. (But note that that approach
         * requires us to define extra classes -- unfortunate under Android.) *Then* we could consider
         * lying about the fields below on the grounds that we always initialize them just after the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcshared/cshared_test.go

    				dlltoolpath = lp
    			}
    		}
    
    		args := []string{dlltoolpath, "-D", args[6], "-l", libgoname, "-d", "libgo.def"}
    
    		if filepath.Ext(dlltoolpath) == "" {
    			// This is an unfortunate workaround for
    			// https://github.com/mstorsjo/llvm-mingw/issues/205 in which
    			// we basically reimplement the contents of the dlltool.sh
    			// wrapper: https://git.io/JZFlU.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/cache.go

    	if err != nil {
    		// If the cache already contains a pseudo-version with the given hash, we
    		// would previously return that pseudo-version without checking upstream.
    		// However, that produced an unfortunate side-effect: if the author added a
    		// tag to the repository, 'go get' would not pick up the effect of that new
    		// tag on the existing commits, and 'go' commands that referred to those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	return true
    }
    
    func (adc *attachDetachController) VolumeAttachmentLister() storagelistersv1.VolumeAttachmentLister {
    	return adc.volumeAttachmentLister
    }
    
    // VolumeHost implementation
    // This is an unfortunate requirement of the current factoring of volume plugin
    // initializing code. It requires kubelet specific methods used by the mounting
    // code to be implemented by all initializers even if the initializer does not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableMap.java

         * the parameter and return type both to be platform types. As a result, Kotlin permits calls
         * that can lead to NullPointerException. That's unfortunate. But hopefully most Kotlin callers
         * use `get(key) ?: defaultValue` instead of this method, anyway.
         */
        V result = get(key);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top