Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 580 for isInitialized (0.81 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerContext.java

            // We ignore logging from here because this is when the Groovy runtime is initialized.
            // This may happen in BuildOperationTrace, and then the logging from the plugin factory would go into the build operation trace again.
            // That then will fail because we can't use JsonOutput in BuildOperationTrace when the Groovy VM hasn't been initialized.
            addNoOpLogger(GROOVY_VM_PLUGIN_FACTORY);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/plugin/v1beta1/client.go

    }
    
    type client struct {
    	mutex    sync.Mutex
    	resource string
    	socket   string
    	grpc     *grpc.ClientConn
    	handler  ClientHandler
    	client   api.DevicePluginClient
    }
    
    // NewPluginClient returns an initialized device plugin client.
    func NewPluginClient(r string, socketPath string, h ClientHandler) Client {
    	return &client{
    		resource: r,
    		socket:   socketPath,
    		handler:  h,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:35:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/gover/toolchain.go

    func ToolchainMax(x, y string) string {
    	if Compare(FromToolchain(x), FromToolchain(y)) < 0 {
    		return y
    	}
    	return x
    }
    
    // Startup records the information that went into the startup-time version switch.
    // It is initialized by switchGoToolchain.
    var Startup struct {
    	GOTOOLCHAIN   string // $GOTOOLCHAIN setting
    	AutoFile      string // go.mod or go.work file consulted
    	AutoGoVersion string // go line found in file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesChangingModulesIntegrationTest.groovy

        }
    }
    """
    
            expect:
            succeeds("resolve")
            output.count("changing=") == 1
            outputContains("changing=false")
        }
    
        def "static and dynamic dependencies have changing flag initialized to false"() {
            buildFile <<
    """
    $repoDeclaration
    configurations {
        modules
    }
    
    class VerifyingRule implements ComponentMetadataRule {
        public void execute(ComponentMetadataContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseException.java

            inputStream.defaultReadObject();
            hideCause = threadLocal();
        }
    
        private void writeObject(java.io.ObjectOutputStream out) throws IOException {
            // Ensure fields are initialized before serialization
            String ignored = getMessage();
            out.defaultWriteObject();
        }
    
        private ThreadLocal<Boolean> threadLocal() {
            return new HideStacktrace();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Charsets.java

      /*
       * Please do not add new Charset references to this class, unless those character encodings are
       * part of the set required to be supported by all Java platform implementations! Any Charsets
       * initialized here may cause unexpected delays when this class is loaded. See the Charset
       * Javadocs for the list of built-in character encodings.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Charsets.java

      /*
       * Please do not add new Charset references to this class, unless those character encodings are
       * part of the set required to be supported by all Java platform implementations! Any Charsets
       * initialized here may cause unexpected delays when this class is loaded. See the Charset
       * Javadocs for the list of built-in character encodings.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/os/exec_unix.go

    		// Regular PID
    		return p.pidSignal(s)
    	default:
    		panic("unreachable")
    	}
    }
    
    func (p *Process) pidSignal(s syscall.Signal) error {
    	if p.Pid == pidUnset {
    		return errors.New("os: process not initialized")
    	}
    
    	p.sigMu.RLock()
    	defer p.sigMu.RUnlock()
    
    	switch p.pidStatus() {
    	case statusDone:
    		return ErrProcessDone
    	case statusReleased:
    		return errors.New("os: process already released")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. cmd/bucket-quota.go

    func (sys *BucketQuotaSys) Get(ctx context.Context, bucketName string) (*madmin.BucketQuota, error) {
    	cfg, _, err := globalBucketMetadataSys.GetQuotaConfig(ctx, bucketName)
    	return cfg, err
    }
    
    // NewBucketQuotaSys returns initialized BucketQuotaSys
    func NewBucketQuotaSys() *BucketQuotaSys {
    	return &BucketQuotaSys{}
    }
    
    var bucketStorageCache = cachevalue.New[DataUsageInfo]()
    
    // Init initialize bucket quota.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/plugin_test.go

    			wd, ok := request.LatencyTrackersFrom(ctx)
    			if !ok {
    				if test.InitContext {
    					t.Errorf("expected webhook duration to be initialized")
    				}
    				return
    			}
    			if !test.InitContext {
    				t.Errorf("expected webhook duration to not be initialized")
    				return
    			}
    			if wd.MutatingWebhookTracker.GetLatency() != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top