Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for Portal (0.26 sec)

  1. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/references/FirIdeNormalAnalysisSourceModuleReferenceShortenerTestGenerated.java

        return AnalysisApiFirTestConfiguratorFactory.INSTANCE.createConfigurator(
          new AnalysisApiTestConfiguratorFactoryData(
            FrontendKind.Fir,
            TestModuleKind.Source,
            AnalysisSessionMode.Normal,
            AnalysisApiMode.Ide
          )
        );
      }
    
      @Test
      public void testAllFilesPresentInShortenRange() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 11:41:50 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/references/FirStandaloneNormalAnalysisSourceModuleReferenceShortenerTestGenerated.java

        return AnalysisApiFirStandaloneModeTestConfiguratorFactory.INSTANCE.createConfigurator(
          new AnalysisApiTestConfiguratorFactoryData(
            FrontendKind.Fir,
            TestModuleKind.Source,
            AnalysisSessionMode.Normal,
            AnalysisApiMode.Standalone
          )
        );
      }
    
      @Test
      public void testAllFilesPresentInShortenRange() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 11:41:50 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	pod1 := generatePod("128.0.0.1", "pod1", "nsA", "", "node1", map[string]string{"app": "prod-app"}, map[string]string{})
    	pods := []*corev1.Pod{pod1}
    	addPods(t, controller, fx, pods...)
    
    	// 1. incremental eds for normal service endpoint update
    	createServiceWait(controller, "svc1", "nsa", nil, nil,
    		[]int32{8080}, map[string]string{"app": "prod-app"}, t)
    
    	// Endpoints are generated by Kubernetes from pod labels and service selectors.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

        # storage.path /tmp/storage
    
        # storage.sync
        # ------------
        # configure the synchronization mode used to store the data into the
        # filesystem. It can take the values normal or full.
        #
        # storage.sync normal
    
        # storage.checksum
        # ----------------
        # enable the data integrity check when writing and reading data from the
        # filesystem. The storage layer uses the CRC32 algorithm.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    		"pilot_destrule_subsets",
    		"Duplicate subsets across destination rules for same host",
    	)
    
    	// totalVirtualServices tracks the total number of virtual service
    	totalVirtualServices = monitoring.NewGauge(
    		"pilot_virt_services",
    		"Total virtual services known to pilot.",
    	)
    
    	// LastPushStatus preserves the metrics and data collected during lasts global push.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    }
    
    func (s *mspan) base() uintptr {
    	return s.startAddr
    }
    
    func (s *mspan) layout() (size, n, total uintptr) {
    	total = s.npages << _PageShift
    	size = s.elemsize
    	if size > 0 {
    		n = total / size
    	}
    	return
    }
    
    // recordspan adds a newly allocated span to h.allspans.
    //
    // This only happens the first time a span is allocated from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    		return false
    	}
    	return true
    }
    
    // alternateRoundTripper returns the alternate RoundTripper to use
    // for this request if the Request's URL scheme requires one,
    // or nil for the normal case of using the Transport.
    func (t *Transport) alternateRoundTripper(req *Request) RoundTripper {
    	if !t.useRegisteredProtocol(req) {
    		return nil
    	}
    	altProto, _ := t.altProto.Load().(map[string]RoundTripper)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    		// we set exitAfter to five minutes because we use this client configuration to request new certs - if we are unable
    		// to request new certs, we will be unable to continue normal operation. Exiting the process allows a wrapper
    		// or the bootstrapping credentials to potentially lay down new initial config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	for _, c := range containers {
    		resp, err := m.runtimeService.ContainerStatus(ctx, c.Id, false)
    		// Between List (ListContainers) and check (ContainerStatus) another thread might remove a container, and that is normal.
    		// The previous call (ListContainers) never fails due to a pod container not existing.
    		// Therefore, this method should not either, but instead act as if the previous call failed,
    		// which means the error should be ignored.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework.go

    	for _, e := range f.getExtensionPoints(profile.Plugins) {
    		plugins := reflect.ValueOf(e.slicePtr).Elem()
    		pluginType := plugins.Type().Elem()
    		// build enabledSet of plugins already registered via normal extension points
    		// to check double registration
    		enabledSet := newOrderedSet()
    		for _, plugin := range e.plugins.Enabled {
    			enabledSet.insert(plugin.Name)
    		}
    
    		disabledSet := sets.New[string]()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top