Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 525 for retSize (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ProviderApiDependenciesIntegrationTest.groovy

        id 'java'
    }
    
    def version = objects.property(String)
    
    configurations.testImplementation.dependencies.addLater(version.map { project.dependencies.create("com.example:artifact:\${it}") })
    
    tasks.all {} // force realize all tasks
    
    version.set('5.6')
    
    assert configurations.testRuntimeClasspath.allDependencies.size() == 1 
            """
            expect:
            succeeds("help")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

      auto exec_ctx = tfd::CreateFallbackTestExecutionContext(host, &resource_ctx);
    
      std::vector<tfrt::RCReference<tfrt::AsyncValue>> results;
      results.resize(func->result_types().size());
      std::vector<tfrt::RCReference<tfrt::AsyncValue>> result_tensors;
      result_tensors.resize(func->result_types().size() - 1);
    
      func->Execute(exec_ctx, arguments.values(), results);
      host->Await(results);
    
      for (auto& result : results) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. test-site/public/javascripts/suggestor.js

                    //ポジション設定
                    this.resize();
                    var suggestor = this;
                    $(window).resize(function() {
                        suggestor.resize();
                    });
    
                    $("body").append($boxElement);
                },
    
                suggest: function() {
                    suggestingSts = true;
    
                    //ポジション設定
                    this.resize();
    
                    var suggestor = this;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem_test.cc

        if (TF_GetCode(status_) != TF_OK) return "";
    
        std::string content;
        content.resize(file_size);
        auto read = tf_random_access_file::Read(reader.get(), 0, file_size,
                                                &content[0], status_);
        if (TF_GetCode(status_) != TF_OK) return "";
        if (read >= 0) content.resize(read);
        if (file_size != content.size())
          TF_SetStatus(
              status_, TF_DATA_LOSS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 12:04:23 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/plugins.go

    	"k8s.io/kubernetes/plugin/pkg/admission/security/podsecurity"
    	"k8s.io/kubernetes/plugin/pkg/admission/serviceaccount"
    	"k8s.io/kubernetes/plugin/pkg/admission/storage/persistentvolume/resize"
    	"k8s.io/kubernetes/plugin/pkg/admission/storage/storageclass/setdefault"
    	"k8s.io/kubernetes/plugin/pkg/admission/storage/storageobjectinuseprotection"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/asmb.go

    // and mmap the output buffer with the proper size.
    func sizeExtRelocs(ctxt *Link, relsize uint32) {
    	if relsize == 0 {
    		panic("sizeExtRelocs: relocation size not set")
    	}
    	var sz int64
    	for _, seg := range Segments {
    		for _, sect := range seg.Sections {
    			sect.Reloff = uint64(ctxt.Out.Offset() + sz)
    			sect.Rellen = uint64(relsize * sect.Relcount)
    			sz += int64(sect.Rellen)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/decompose.go

    				f.NamedValues[*dataName] = append(f.NamedValues[*dataName], v.Args[1])
    				toDelete = append(toDelete, namedVal{i, j})
    			}
    		case t.IsFloat():
    			// floats are never decomposed, even ones bigger than RegSize
    		case t.Size() > f.Config.RegSize:
    			f.Fatalf("undecomposed named type %s %v", name, t)
    		}
    	}
    
    	deleteNamedVals(f, toDelete)
    	f.Names = append(f.Names, newNames...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/typelink.go

    		} else if ldr.IsItab(s) {
    			itabs = append(itabs, s)
    		}
    	}
    	sort.Sort(typelinks)
    
    	tl := ldr.CreateSymForUpdate("runtime.typelink", 0)
    	tl.SetType(sym.STYPELINK)
    	ldr.SetAttrLocal(tl.Sym(), true)
    	tl.SetSize(int64(4 * len(typelinks)))
    	tl.Grow(tl.Size())
    	relocs := tl.AddRelocs(len(typelinks))
    	for i, s := range typelinks {
    		r := relocs.At(i)
    		r.SetSym(s.Type)
    		r.SetOff(int32(i * 4))
    		r.SetSiz(4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 03 21:13:25 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/StatefulNextGenBuildCacheService.java

                        legacyWriter.writeTo(output);
                    }
    
                    @Override
                    public long getSize() {
                        return legacyWriter.getSize();
                    }
                };
            }
            store(key, writer);
        }
    
        void store(BuildCacheKey key, NextGenWriter writer) throws BuildCacheException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. plugin/pkg/admission/storage/persistentvolume/resize/admission.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package resize
    
    import (
    	"context"
    	"fmt"
    	"io"
    
    	"k8s.io/apiserver/pkg/admission"
    	genericadmissioninitializer "k8s.io/apiserver/pkg/admission/initializer"
    	"k8s.io/client-go/informers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 3.9K bytes
    - Viewed (0)
Back to top