Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 69 for transformArgs (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/update.go

    			return
    		}
    
    		userInfo, _ := request.UserFrom(ctx)
    		transformers := []rest.TransformFunc{}
    
    		// allows skipping managedFields update if the resulting object is too big
    		shouldUpdateManagedFields := true
    		admit = fieldmanager.NewManagedFieldsValidatingAdmissionController(admit)
    		transformers = append(transformers, func(_ context.Context, newObj, liveObj runtime.Object) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/transformer_test.go

    			t.Errorf("%d: unexpected out: %q %t %#v", i, string(got), stale, err)
    			continue
    		}
    		if test.match != -1 && !bytes.Equal([]byte("value"), transformers[test.match].Transformer.(*testTransformer).receivedFrom) {
    			t.Errorf("%d: unexpected value received by transformer: %s", i, transformers[test.match].Transformer.(*testTransformer).receivedFrom)
    		}
    	}
    }
    
    func TestPrefixTo(t *testing.T) {
    	testErr := fmt.Errorf("test error")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/transformer.go

    // the store.
    func NewPrefixTransformers(err error, transformers ...PrefixTransformer) Transformer {
    	if err == nil {
    		err = fmt.Errorf("the provided value does not match any of the supported transformers")
    	}
    	return &prefixTransformers{
    		transformers: transformers,
    		err:          err,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/envelope.go

    	// Encrypt bytes to a ciphertext.
    	Encrypt(data []byte) ([]byte, error)
    }
    
    type envelopeTransformer struct {
    	envelopeService Service
    
    	// transformers is a thread-safe LRU cache which caches decrypted DEKs indexed by their encrypted form.
    	transformers *lru.Cache
    
    	// baseTransformerFunc creates a new transformer for encrypting the data with the DEK.
    	baseTransformerFunc func(cipher.Block) (value.Transformer, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 14:23:50 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/ObjectiveCCompiler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal.gcc;
    
    import org.gradle.internal.Transformers;
    import org.gradle.internal.operations.BuildOperationExecutor;
    import org.gradle.internal.work.WorkerLeaseService;
    import org.gradle.nativeplatform.internal.CompilerOutputFileNamingSchemeFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/CppPCHCompilerTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal.msvcpp
    
    import org.gradle.internal.Transformers
    import org.gradle.nativeplatform.toolchain.internal.CommandLineToolContext
    import org.gradle.nativeplatform.toolchain.internal.NativeCompileSpec
    import org.gradle.nativeplatform.toolchain.internal.NativeCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/CCompiler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal.gcc;
    
    import org.gradle.internal.Transformers;
    import org.gradle.internal.operations.BuildOperationExecutor;
    import org.gradle.internal.work.WorkerLeaseService;
    import org.gradle.nativeplatform.internal.CompilerOutputFileNamingSchemeFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/CppCompilerTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal.msvcpp
    
    import org.gradle.internal.Transformers
    import org.gradle.nativeplatform.toolchain.internal.CommandLineToolContext
    import org.gradle.nativeplatform.toolchain.internal.NativeCompiler
    import org.gradle.nativeplatform.toolchain.internal.compilespec.CppCompileSpec
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/CPCHCompiler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal.gcc;
    
    import org.gradle.internal.Transformers;
    import org.gradle.internal.operations.BuildOperationExecutor;
    import org.gradle.internal.work.WorkerLeaseService;
    import org.gradle.nativeplatform.internal.CompilerOutputFileNamingSchemeFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/ObjectiveCPCHCompiler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal.gcc;
    
    import org.gradle.internal.Transformers;
    import org.gradle.internal.operations.BuildOperationExecutor;
    import org.gradle.internal.work.WorkerLeaseService;
    import org.gradle.nativeplatform.internal.CompilerOutputFileNamingSchemeFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top