Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for transforming (0.16 sec)

  1. pkg/controller/endpointslicemirroring/reconciler.go

    	"k8s.io/klog/v2"
    	endpointsv1 "k8s.io/kubernetes/pkg/api/v1/endpoints"
    	"k8s.io/kubernetes/pkg/controller/endpointslicemirroring/metrics"
    )
    
    // reconciler is responsible for transforming current EndpointSlice state into
    // desired state
    type reconciler struct {
    	client clientset.Interface
    
    	// endpointSliceTracker tracks the list of EndpointSlices and associated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/codec.go

    	return nil, nil, fmt.Errorf("decoding is not allowed for this codec: %v", reflect.TypeOf(n.Encoder))
    }
    
    // NewParameterCodec creates a ParameterCodec capable of transforming url values into versioned objects and back.
    func NewParameterCodec(scheme *Scheme) ParameterCodec {
    	return &parameterCodec{
    		typer:     scheme,
    		convertor: scheme,
    		creator:   scheme,
    		defaulter: scheme,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:20:30 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

            configuration.setJointCompilationOptions(jointCompilationOptions);
    
            ClassLoader classPathLoader;
            if (version.compareTo(VersionNumber.parse("2.0")) < 0) {
                // using a transforming classloader is only required for older buggy Groovy versions
                classPathLoader = new GroovyCompileTransformingClassLoader(getExtClassLoader(), DefaultClassPath.of(spec.getCompileClasspath()));
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Lists.java

            ? new TransformingRandomAccessList<>(fromList, function)
            : new TransformingSequentialList<>(fromList, function);
      }
    
      /**
       * Implementation of a sequential transforming list.
       *
       * @see Lists#transform
       */
      private static class TransformingSequentialList<
              F extends @Nullable Object, T extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/model/StateTransitionController.java

                    return;
                }
                doTransition(fromState, toState, action);
            });
        }
    
        /**
         * Transitions to a final state, taking any failures from previous transitions and transforming them.
         */
        public ExecutionResult<Void> transition(T fromState, T toState, Function<ExecutionResult<Void>, ExecutionResult<Void>> action) {
            return synchronizer.withLock(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:44 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    type RequestScope struct {
    	Namer ScopeNamer
    
    	Serializer runtime.NegotiatedSerializer
    	runtime.ParameterCodec
    
    	// StandardSerializers, if set, restricts which serializers can be used when
    	// we aren't transforming the output (into Table or PartialObjectMetadata).
    	// Used only by CRDs which do not yet support Protobuf.
    	StandardSerializers []runtime.SerializerInfo
    
    	Creater         runtime.ObjectCreater
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

            file("$folderName/settings.gradle") << "rootProject.name = '$folderName'"
        }
    
        List<String> allTransformsFor(String fileName) {
            List<String> transforms = []
            def pattern = Pattern.compile("Transforming " + fileName + ".* with (.*)")
            for (def line : output.readLines()) {
                def matcher = pattern.matcher(line)
                if (matcher.matches()) {
                    transforms.add(matcher.group(1))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  8. src/image/png/writer.go

    	}
    
    	// cr[*] and pr are the bytes for the current and previous row.
    	// cr[0] is unfiltered (or equivalently, filtered with the ftNone filter).
    	// cr[ft], for non-zero filter types ft, are buffers for transforming cr[0] under the
    	// other PNG filter types. These buffers are allocated once and re-used for each row.
    	// The +1 is for the per-row filter type, which is at cr[*][0].
    	b := m.Bounds()
    	sz := 1 + (bitsPerPixel*b.Dx()+7)/8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    	(LoweredAddr {sym} [int32(off)+off2] base)
    (I64AddConst [off] x:(SP)) && isU32Bit(off) => (LoweredAddr [int32(off)] x) // so it is rematerializeable
    
    // transforming readonly globals into constants
    (I64Load [off] (LoweredAddr {sym} [off2] (SB)) _) && symIsRO(sym) && isU32Bit(off+int64(off2)) => (I64Const [int64(read64(sym, off+int64(off2), config.ctxt.Arch.ByteOrder))])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Lists.java

            ? new TransformingRandomAccessList<>(fromList, function)
            : new TransformingSequentialList<>(fromList, function);
      }
    
      /**
       * Implementation of a sequential transforming list.
       *
       * @see Lists#transform
       */
      private static class TransformingSequentialList<
              F extends @Nullable Object, T extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top