Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for retSize (0.19 sec)

  1. src/cmd/link/internal/ld/elf.go

    			sh.Entsize = uint64(ctxt.Arch.RegSize)
    			sh.Addralign = uint64(ctxt.Arch.RegSize)
    			shsym(sh, ldr, ldr.Lookup(".got", 0))
    
    			sh = elfshname(".got.plt")
    			sh.Type = uint32(elf.SHT_PROGBITS)
    			sh.Flags = uint64(elf.SHF_ALLOC + elf.SHF_WRITE)
    			sh.Entsize = uint64(ctxt.Arch.RegSize)
    			sh.Addralign = uint64(ctxt.Arch.RegSize)
    			shsym(sh, ldr, ldr.Lookup(".got.plt", 0))
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            registry.realize("parent") // TODO - should not need this: parent mutations should be applied before mutating element
    
            expect:
            registry.realize("parent.bar", Bean).value == "prefix: bar"
            registry.realize("parent.foo", String) == "ignore me"
            registry.realize("parent.bar.child1", Bean).value == "prefix: baz"
            registry.realize("parent.bar.child2", String) == "ignore me too"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    		if err != nil {
    			return nil, err
    		}
    	}
    
    	reqSize := uint32(4)
    	for {
    		buf := make([]GUID, reqSize)
    		err = setupDiClassGuidsFromNameEx(classNameUTF16, &buf[0], uint32(len(buf)), &reqSize, machineNameUTF16, 0)
    		if err == ERROR_INSUFFICIENT_BUFFER {
    			continue
    		}
    		if err != nil {
    			return nil, err
    		}
    		return buf[:reqSize], nil
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    				if len(vols) > 0 {
    					t.Errorf("No resize request for any volumes, but found resize required volumes in ASW: %v", vols)
    				}
    			},
    			volumeMode: v1.PersistentVolumeFilesystem,
    		},
    
    		{
    			// Make volume used as ReadOnly, so volume shouldn't be marked as fsResizeRequired
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            _ * provider2.present >> true
            _ * provider3.type >> otherType
            container.addLater(provider1)
            container.addLater(provider2)
            container.addLater(provider3)
    
            // Realize all object of type `type`
            toList(container.withType(type))
    
            when:
            def didRemoved1 = container.remove(provider1)
    
            then:
            didRemoved1
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	if restartCPULim || restartCPUReq || restartMemLim {
    		// resize policy requires this container to restart
    		changes.ContainersToKill[kubeContainerStatus.ID] = containerToKillInfo{
    			name:      kubeContainerStatus.Name,
    			container: &pod.Spec.Containers[containerIdx],
    			message:   fmt.Sprintf("Container %s resize requires restart", container.Name),
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server_test.go

    	return f.execFunc(containerID, cmd, stdin, stdout, stderr, tty, resize)
    }
    
    func (f *fakeRuntime) Attach(_ context.Context, containerID string, stdin io.Reader, stdout, stderr io.WriteCloser, tty bool, resize <-chan remotecommand.TerminalSize) error {
    	return f.attachFunc(containerID, stdin, stdout, stderr, tty, resize)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto input = op.getImages();
        auto input_ty = mlir::cast<ShapedType>(input.getType());
        auto input_element_ty = input_ty.getElementType();
        auto out_size = op.getSize();
        auto out_size_ty = mlir::cast<ShapedType>(out_size.getType());
        auto out_size_element_ty = out_size_ty.getElementType();
    
        // Input should be rank 4.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      int num_extra_results = num_new_results - num_old_results;
    
      SmallVector<Type, 4> new_result_types;
      SmallVector<Value, 4> new_while_operands;
      new_result_types.resize(num_extra_results);
      new_while_operands.resize(num_extra_results);
    
      for (auto& it : hoister.GetResources()) {
        if (!it.second.is_written) continue;
        int index = it.second.result_index - num_old_results;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            SearchResponse response = option.apply(client.prepareSearch(index).setScroll(scrollForUpdate).setSize(sizeForUpdate)
                    .setPreference(Constants.SEARCH_PREFERENCE_LOCAL)).execute().actionGet(fessConfig.getIndexScrollSearchTimeout());
    
            int count = 0;
            String scrollId = response.getScrollId();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top