Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 352 for OUT (0.02 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

     */
    public abstract class KotlinModificationTrackerFactory : KotlinPlatformComponent {
        /**
         * Creates an out-of-block modification tracker which is incremented every time there is an out-of-block change in some source project
         * module.
         *
         * ### Out-of-block Modification (OOBM)
         *
         * Out-of-block modification is a source code modification which may change the resolution of other non-local declarations.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            outputContains("files = [a.thing, b.thing, a.out, b.out, lib1-6500.jar]")
            outputContains("artifacts = [a.thing (a.thing), b.thing (b.thing), a.out (project :a), b.out (project :b), lib1-6500.jar (group:lib1:6500)]")
            outputContains("variants = [{artifactType=thing}, {artifactType=thing}, {artifactType=out}, {artifactType=out}, {artifactType=jar, org.gradle.status=release}]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. internal/grid/handlers.go

    	// It must keep consuming from 'in' until it returns.
    	// 'in' and 'out' are independent.
    	// The handler should never close out.
    	// Buffers received from 'in'  can be recycled with PutByteBuffer.
    	// Buffers sent on out can not be referenced once sent.
    	StreamHandlerFn func(ctx context.Context, payload []byte, in <-chan []byte, out chan<- []byte) *RemoteErr
    
    	// StreamHandler handles fully bidirectional streams,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/deployment/builder.go

    				} else {
    					intersection = intersection.Intersection(t)
    				}
    			}
    		}
    		for name := range intersection {
    			out[c.Name()].Insert(name)
    		}
    	}
    
    	return out, nil
    }
    
    // build inner allows assigning to b (assignment to receiver would be ineffective)
    func build(b *builder) (out echo.Instances, err error) {
    	start := time.Now()
    	scopes.Framework.Info("=== BEGIN: Deploy echo instances ===")
    	defer func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/workload.go

    			filteredWorkloads = append(filteredWorkloads, workload)
    		}
    	}
    	out, err := json.MarshalIndent(filteredWorkloads, "", "    ")
    	if err != nil {
    		return fmt.Errorf("failed to marshal workloads: %v", err)
    	}
    	if outputFormat == "yaml" {
    		if out, err = yaml.JSONToYAML(out); err != nil {
    			return err
    		}
    	}
    	fmt.Fprintln(c.Stdout, string(out))
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. cni/pkg/log/uds_test.go

    	_ = istiolog.Sync()
    
    	// Restore os stdout.
    	os.Stdout = stdout
    	assert.NoError(t, istiolog.Configure(loggingOptions))
    
    	assert.NoError(t, w.Close())
    	out, err := io.ReadAll(r)
    	assert.NoError(t, err)
    
    	cases := []struct {
    		level string
    		msg   string
    		key   *float64
    	}{
    		{"debug", "debug log", nil},
    		{"info", "info log", nil},
    		{"warn", "warn log", nil},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildTreeModelCreator.kt

    ) : BuildTreeModelCreator {
        override fun <T : Any> beforeTasks(action: BuildTreeModelAction<out T>) {
            cache.maybePrepareModel {
                delegate.beforeTasks(action)
            }
        }
    
        override fun <T : Any?> fromBuildModel(action: BuildTreeModelAction<out T>): T? {
            return cache.loadOrCreateModel {
                val model = delegate.fromBuildModel(action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/diagnostics/KtDiagnostic.kt

        public val severity: KaSeverity
    
        public val defaultMessage: String
    }
    
    public typealias KtDiagnostic = KaDiagnostic
    
    public interface KaDiagnosticWithPsi<out PSI : PsiElement> : KaDiagnostic {
        public override val diagnosticClass: KClass<out KaDiagnosticWithPsi<PSI>>
    
        public val psi: PSI
        public val textRanges: Collection<TextRange>
    }
    
    public typealias KtDiagnosticWithPsi<PSI> = KaDiagnosticWithPsi<PSI>
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. pkg/test/kube/dump.go

    	for _, pod := range pods {
    		out, err := yaml.Marshal(&pod)
    		if err != nil {
    			scopes.Framework.Warnf("Error marshaling pod state for output: %v", err)
    			continue
    		}
    
    		outPath := podOutputPath(workDir, c, pod, "pod-state.yaml")
    		if err := os.WriteFile(outPath, out, os.ModePerm); err != nil {
    			scopes.Framework.Infof("Error writing out pod state to file: %v", err)
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/client.go

    	h, f := cl.kind(kind)
    	if !f {
    		return nil
    	}
    
    	list := h.List(namespace, klabels.Everything())
    
    	out := make([]config.Config, 0, len(list))
    	for _, item := range list {
    		cfg := TranslateObject(item, kind, cl.domainSuffix)
    		out = append(out, cfg)
    	}
    
    	return out
    }
    
    func (cl *Client) allKinds() map[config.GroupVersionKind]kclient.Untyped {
    	cl.kindsMu.RLock()
    	defer cl.kindsMu.RUnlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top