Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 118 for data_ (0.15 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

    ) : CachedProjectState(path, projectDir, buildFile)
    
    
    internal
    class ProjectWithNoWork(
        path: Path,
        projectDir: File,
        buildFile: File
    ) : CachedProjectState(path, projectDir, buildFile)
    
    
    data class BuildToStore(
        val build: VintageGradleBuild,
        // Does this build have work scheduled?
        val hasWork: Boolean,
        // Does this build have a child build with work scheduled?
        val hasChildren: Boolean
    ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. cmd/storage-datatypes_gen.go

    		return
    	}
    	if dc.IsNil() {
    		err = dc.ReadNil()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		z.Data = nil
    	} else {
    		z.Data, err = dc.ReadBytes(z.Data)
    		if err != nil {
    			err = msgp.WrapError(err, "Data")
    			return
    		}
    	}
    	z.NumVersions, err = dc.ReadInt()
    	if err != nil {
    		err = msgp.WrapError(err, "NumVersions")
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'generic' : 'Generic'
        ]
    
        private static final def KNOWN_DEFINITIONS = [
            'problems-api:missing-id' : 'Problem id must be specified',
            'problems-api:unsupported-additional-data' : 'Unsupported additional data type',
            'compilation:groovy-dsl:compilation-failed' : 'Groovy DSL script compilation problem',
            'compilation:java:initialization-failed' : 'Java compilation initialization error',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. scan.go

    				f := joinFields[idx][len(joinFields[idx])-1]
    				db.AddError(f.Set(db.Statement.Context, relValue, values[idx]))
    			}
    		}
    
    		// release data to pool
    		field.NewValuePool.Put(values[idx])
    	}
    }
    
    // ScanMode scan data mode
    type ScanMode uint8
    
    // scan modes
    const (
    	ScanInitialized         ScanMode = 1 << 0 // 1
    	ScanUpdate              ScanMode = 1 << 1 // 2
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	if !rb.cfg.EnableIPv6 {
    		return rb
    	}
    	return rb.insertInternal(&rb.rules.rulesv6, command, chain, table, position, params...)
    }
    
    func indexOf(element string, data []string) int {
    	for k, v := range data {
    		if element == v {
    			return k
    		}
    	}
    	return -1 // not found.
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/DefaultIsolatedProjectEvaluationListenerProvider.kt

        private
        fun isolate(actions: IsolatedProjectActions, owner: IsolateOwner) =
            IsolatedActionSerializer(owner, owner.serviceOf(), owner.serviceOf())
                .serialize(actions)
    }
    
    
    private
    data class IsolatedProjectActions(
        val beforeProject: IsolatedProjectActionList,
        val afterProject: IsolatedProjectActionList
    )
    
    
    private
    class IsolatedProjectEvaluationListener(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    		{
    			configMap: api.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "configmap3",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Data: map[string]string{
    					"foo": "bar",
    				},
    				BinaryData: map[string][]byte{
    					"bin": []byte("binary data"),
    				},
    			},
    			// Columns: Name, (Num) Data, Age
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

            return TypeArgumentMapping(typeParameterOwner, mapping)
        }
    
        private data class TypeArgumentMapping(
            val owner: ClassifierDescriptorWithTypeParameters,
            val mapping: Map<TypeParameterDescriptor, BoundTypeArgument>
        )
    
        private data class BoundTypeArgument(val type: KotlinType, val variance: Variance)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def ExecutorConvertControlToDataOutputsPass : Pass<"tf-executor-convert-control-to-data-outputs", "ModuleOp"> {
      let summary = "Chain control outputs of while loop body";
    
      let description = [{
        This pass converts the control outputs of a while loop body function to data
        outputs. Thus, inter iteration control dependencies are transformed to
        data dependencies. Since data dependencies can express which particular
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    			return
    		}
    		return
    	}
    
    	defer func() {
    		var data []byte
    		if buf != nil {
    			data = buf.Bytes()
    		}
    
    		if len(data) == 0 {
    			return
    		}
    
    		globalCacheConfig.Set(&cache.ObjectInfo{
    			Key:          objInfo.Name,
    			Bucket:       objInfo.Bucket,
    			ETag:         objInfo.ETag,
    			ModTime:      objInfo.ModTime,
    			Expires:      objInfo.ExpiresStr(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top