Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,181 for webform (0.16 sec)

  1. src/crypto/des/block.go

    		for i := 0; i < 8; i++ {
    			left, right = feistel(left, right, subkeys[2*i], subkeys[2*i+1])
    		}
    	}
    
    	left = (left << 31) | (left >> 1)
    	right = (right << 31) | (right >> 1)
    
    	// switch left & right and perform final permutation
    	preOutput := (uint64(right) << 32) | uint64(left)
    	byteorder.BePutUint64(dst, permuteFinalBlock(preOutput))
    }
    
    // DES Feistel function. feistelBox must be initialized via
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. .github/workflows/codeql-analysis.yml

            path: ~/.m2/repository
            key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
            restore-keys: ${{ runner.os }}-m2
        - name: Build with Maven
          run: mvn -B package --file pom.xml
    
        - name: Perform CodeQL Analysis
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. test/fixedbugs/issue16331.go

    // run
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Perform tracebackdefers with a deferred reflection method.
    
    package main
    
    import "reflect"
    
    type T struct{}
    
    func (T) M() {
    }
    
    func F(args []reflect.Value) (results []reflect.Value) {
    	return nil
    }
    
    func main() {
    	done := make(chan bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 17 18:57:01 UTC 2016
    - 839 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentableClosure.java

     * which is a performance optimization. <p>
     *
     * Upon an invocation of {@link InstrumentableClosure#makeEffectivelyInstrumented} the instance must perform
     * all the delayed work and become "effectively instrumented".
     *
     * @see CallInterceptionClosureInstrumentingClassVisitor
     */
    @NonNullApi
    public interface InstrumentableClosure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/developingPlugins/incrementalTask/groovy/buildSrc/src/main/java/Generate.java

        @Input
        abstract public Property<String> getContent();
    
        @OutputDirectory
        abstract public RegularFileProperty getGeneratedFileDir();
    
        @TaskAction
        public void perform() throws IOException {
            for (int i = 1; i <= getFileCount().get(); i++) {
                writeFile(new File(getGeneratedFileDir().get().getAsFile(), i + ".txt"), getContent().get());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_util.h

    extern const char kXlaInferredShapesAttrName[];
    
    // Infers output shapes for all nodes in graph `g`. The output shapes will be
    // stored in node attribute `kXlaInferredShapesAttrName`.
    //
    // We have to perform shape inference before encapsulation because after
    // encapsulation, some nodes will be encapsulated into function call, and shape
    // inference does not handle function call at the moment.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/verifier/HttpRedirectVerifier.java

    import java.util.Collection;
    
    /**
     * Use {@link HttpRedirectVerifierFactory#create} to instantiate an instance of this.
     */
    @FunctionalInterface
    public interface HttpRedirectVerifier {
        /**
         * Perform verification on the URI's in an HTTP request's redirect chain.
         */
        void validateRedirects(Collection<URI> redirectLocations);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1021 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/componentconfigs/kubeproxy_test.go

    			}
    		})
    	}
    }
    
    // runKubeProxyFromTest holds common test case data and evaluation code for kubeProxyHandler.From* functions
    func runKubeProxyFromTest(t *testing.T, perform func(gvk schema.GroupVersionKind, yaml string) (kubeadmapi.ComponentConfig, error)) {
    	const (
    		kind        = "KubeProxyConfiguration"
    		clusterCIDR = "1.2.3.4/16"
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 01 14:17:07 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  9. src/go/types/lookup_test.go

    	lookup := func() {
    		for _, name := range names {
    			typ := scope.Lookup(name).Type()
    			LookupFieldOrMethod(typ, true, pkg, "m")
    		}
    	}
    
    	// Perform a lookup once, to ensure that any lazily-evaluated state is
    	// complete.
    	lookup()
    
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		lookup()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 15:31:43 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. cmd/warm-backend.go

    	InUse(ctx context.Context) (bool, error)
    }
    
    const probeObject = "probeobject"
    
    // checkWarmBackend checks if tier config credentials have sufficient privileges
    // to perform all operations defined in the WarmBackend interface.
    func checkWarmBackend(ctx context.Context, w WarmBackend) error {
    	remoteVersionID, err := w.Put(ctx, probeObject, strings.NewReader("MinIO"), 5)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top