Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 260 for interesting (0.85 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	// TODO: update[Claim|Volume]MigrationAnnotations can be optimized to not
    	// copy the claim/volume if no modifications are required. Though this
    	// requires some refactoring as well as an interesting change in the
    	// semantics of the function which may be undesirable. If no copy is made
    	// when no modifications are required this function could sometimes return a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

         * Gradle's bytecode processor replaces the Groovy's original {@link IndyInterface#bootstrap(MethodHandles.Lookup, String, MethodType, String, int)}
         * with this method to intercept potentially "interesting" calls and do some additional work.
         *
         * @param caller the lookup for the caller (JVM-supplied)
         * @param callType the type of the call (corresponds to {@link IndyInterface.CallType} constant)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    link:../samples/sample_java_modules_with_transform.html[This sample] contains a small _buildSrc_ plugin registering such a transform which you may use and adjust to your needs.
    This can be interesting if you want to build a fully <<application_plugin.adoc#sec:application_modular,modular application>> and want the java runtime to treat everything as a real module.
    
    === Disabling Java Module support
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/objfile.go

    			symidx++
    			infosyms = append(infosyms, s)
    		}
    	}
    	ctxt.defs = append(ctxt.defs, infosyms...)
    }
    
    func writeAuxSymDebug(ctxt *Link, par *LSym, aux *LSym) {
    	// Most aux symbols (ex: funcdata) are not interesting--
    	// pick out just the DWARF ones for now.
    	switch aux.Type {
    	case objabi.SDWARFLOC,
    		objabi.SDWARFFCN,
    		objabi.SDWARFABSFCN,
    		objabi.SDWARFLINES,
    		objabi.SDWARFRANGE,
    		objabi.SDWARFVAR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/fmt.go

    		}
    		dumpNodeHeader(w, n)
    		return
    
    	case OLINKSYMOFFSET:
    		n := n.(*LinksymOffsetExpr)
    		fmt.Fprintf(w, "%+v-%v", n.Op(), n.Linksym)
    		// Offset is almost always 0, so only print when it's interesting.
    		if n.Offset_ != 0 {
    			fmt.Fprintf(w, "%+v", n.Offset_)
    		}
    		dumpNodeHeader(w, n)
    
    	case OASOP:
    		n := n.(*AssignOpStmt)
    		fmt.Fprintf(w, "%+v-%+v", n.Op(), n.AsOp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy_test.go

    	proxyHandler.Transport = RoundTripperFunc(func(req *http.Request) (*http.Response, error) {
    		if req.Body != nil {
    			t.Error("Body != nil; want a nil Body")
    		}
    		return nil, errors.New("done testing the interesting part; so force a 502 Gateway error")
    	})
    	frontend := httptest.NewServer(proxyHandler)
    	defer frontend.Close()
    
    	res, err := frontend.Client().Get(frontend.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. docs/en/docs/alternatives.md

    It was not based on a standard like OpenAPI and JSON Schema. So it wouldn't be straightforward to integrate it with other tools, like Swagger UI. But again, it was a very innovative idea.
    
    It has an interesting, uncommon feature: using the same framework, it's possible to create APIs and also CLIs.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. src/testing/fuzz.go

    	flag.Var(&minimizeDuration, "test.fuzzminimizetime", "time to spend minimizing a value after finding a failing input")
    
    	fuzzCacheDir = flag.String("test.fuzzcachedir", "", "directory where interesting fuzzing inputs are stored (for use only by cmd/go)")
    	isFuzzWorker = flag.Bool("test.fuzzworker", false, "coordinate with the parent process to fuzz random values (for use only by cmd/go)")
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. src/runtime/chan.go

    	}
    
    	mem, overflow := math.MulUintptr(elem.Size_, uintptr(size))
    	if overflow || mem > maxAlloc-hchanSize || size < 0 {
    		panic(plainError("makechan: size out of range"))
    	}
    
    	// Hchan does not contain pointers interesting for GC when elements stored in buf do not contain pointers.
    	// buf points into the same allocation, elemtype is persistent.
    	// SudoG's are referenced from their owning thread so they can't be collected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. src/runtime/syscall_windows_test.go

    	dll := syscall.MustLoadDLL(dllpath)
    	defer dll.Release()
    
    	var ok bool
    	proc := dll.MustFindProc("bigStack")
    	cb := syscall.NewCallback(func() uintptr {
    		// Do something interesting to force stack checks.
    		forceStackCopy()
    		ok = true
    		return 0
    	})
    	proc.Call(cb)
    	if !ok {
    		t.Fatalf("callback not called")
    	}
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
Back to top