Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 385 for relSize (3.02 sec)

  1. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/DefaultJavaToolchainResolverRegistry.java

                }
                realizedRepositories.add(realize(repository));
            }
        }
    
        private RealizedJavaToolchainRepository realize(JavaToolchainRepository repository) {
            Class<? extends JavaToolchainResolver> repositoryClass = getResolverClass(repository);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/internal/fuzz/mutator_test.go

    		1,
    		10,
    		100,
    		1000,
    		10000,
    		100000,
    	} {
    		b.Run(strconv.Itoa(size), func(b *testing.B) {
    			buf := make([]byte, size)
    			b.ResetTimer()
    
    			for i := 0; i < b.N; i++ {
    				// resize buffer to the correct shape and reset the PCG
    				buf = buf[0:size]
    				m.r = newPcgRand()
    				m.mutate([]any{buf}, workerSharedMemSize)
    			}
    		})
    	}
    }
    
    func BenchmarkMutatorString(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelRegistry.java

         * @param type the type to project the node as
         * @param <T> the type to project the node as
         * @return the node as the given type
         */
        <T> T realize(ModelPath path, ModelType<T> type);
        <T> T realize(String path, ModelType<T> type);
        <T> T realize(String path, Class<T> type);
    
        /**
         * Get the fully defined model element at the given path.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. tests/integration/security/fuzz/fuzzers/jwt_tool/jwtconf.ini

    cookies =
    key =
    keyList =
    keyFile =
    headerLoc =
    payloadclaim =
    headerclaim =
    payloadvalue =
    headervalue =
    canaryvalue =
    header =
    exploitType =
    scanMode =
    reqMode =
    postData =
    resCode =
    resSize =
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/line.go

    // etc).
    func (ctxt *Link) getFileIndexAndLine(xpos src.XPos) (int, int32) {
    	pos := ctxt.InnermostPos(xpos)
    	if !pos.IsKnown() {
    		pos = src.Pos{}
    	}
    	return pos.FileIndex(), int32(pos.RelLine())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 892 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    			// would generally be hit if starting the process fails and nothing is started to
    			// ingest these resize events.
    			return
    		}
    	}
    }
    
    // createChannels returns the standard channel types for a shell connection (STDIN 0, STDOUT 1, STDERR 2)
    // along with the approximate duplex value. It also creates the error (3) and resize (4) channels.
    func createChannels(opts Options) []wsstream.ChannelType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectTaskLister.java

        @Override
        public Collection<Task> listProjectTasks(Project project) {
            ProjectInternal projectInternal = (ProjectInternal) project;
            TaskContainerInternal tasks = projectInternal.getTasks();
            tasks.realize();
            return tasks;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/tf-tfl-translate-serialize-stablehlo-resize-bilinear.mlir

    Zichuan Wei <******@****.***> 1677736843 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 06:04:37 UTC 2023
    - 455 bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/testFixtures/groovy/org/gradle/test/fixtures/plugin/AbstractLanguagePluginSpec.groovy

        abstract String getLanguageId()
    
        def "registers transformation for language"() {
            when:
            dsl {
                apply plugin: pluginClass
            }
    
            then:
            def transform = realize("languageTransforms").find { it.languageName == languageId }
    
            transform != null
            transform.sourceSetType == languageSourceSet
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/plugins/ComponentBasePluginTest.groovy

            when:
            dsl {
                apply plugin: ComponentBasePlugin
                model {
                    baseComponent(ComponentSpec) {
                    }
                }
            }
    
            then:
            realize("baseComponent") instanceof ComponentSpec
        }
    
        def "adds a 'components' container to the project model"() {
            when:
            dsl {
                apply plugin: ComponentBasePlugin
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top