Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for sris (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    	return rule, matchingRDigests, matchingNDigests, skippingRDigests, skippingNDigests
    }
    
    func cross(uis []user.Info, ris []*request.RequestInfo) []RequestDigest {
    	ans := make([]RequestDigest, 0, len(uis)*len(ris))
    	for _, ui := range uis {
    		for _, ri := range ris {
    			ans = append(ans, RequestDigest{RequestInfo: ri, User: ui})
    		}
    	}
    	return ans
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  2. docs/en/data/external_links.yml

    ece title: Deploy Machine Learning Models with Keras, FastAPI, Redis and Docker - author: Mandy Gu author_link: https://towardsdatascience.com/@mandygu link: https://towardsdatascience.com/deploying-iris-classifications-with-fastapi-and-docker-7c9b83fdec3a title: 'Towards Data Science: Deploying Iris Classifications with FastAPI and Docker' - author: Michael Herman author_link: https://testdriven.io/authors/herman link: https://testdriven.io/blog/fastapi-crud/ title: 'TestDriven.io: Developing and...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. test/codegen/mathbits.go

    	// 386:"BSFL\t"
    	// arm:"ORR\t\\$65536","CLZ",-"MOVHU\tR"
    	// arm64:"ORR\t\\$65536","RBITW","CLZW",-"MOVHU\tR",-"RBIT\t",-"CLZ\t"
    	// s390x:"FLOGR","OR\t\\$65536"
    	// ppc64x/power8:"POPCNTD","ORIS\\t\\$1"
    	// ppc64x/power9:"CNTTZD","ORIS\\t\\$1"
    	// wasm:"I64Ctz"
    	return bits.TrailingZeros16(n)
    }
    
    func TrailingZeros8(n uint8) int {
    	// amd64:"BSFL","ORL\\t\\$256"
    	// 386:"BSFL"
    	// arm:"ORR\t\\$256","CLZ",-"MOVBU\tR"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverTest.groovy

            File relativeFile = new File('relative')
            assertEquals(new File(baseDir, 'relative'), baseDirConverter.resolve(relativeFile))
        }
    
        @Test public void testResolveRelativeFileURI() {
            // Relative URIs were never supported when passed as a URI. They were only supported when passed as a String.
            def ex = assertThrows(InvalidUserDataException, {
                baseDirConverter.resolve(URI.create('file:relative'))
            })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:52 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/config.go

    		}
    	}
    
    	if c.EnableMetrics {
    		if c.EnableProfiling {
    			routes.MetricsWithReset{}.Install(s.Handler.NonGoRestfulMux)
    			slis.SLIMetricsWithReset{}.Install(s.Handler.NonGoRestfulMux)
    		} else {
    			routes.DefaultMetrics{}.Install(s.Handler.NonGoRestfulMux)
    			slis.SLIMetrics{}.Install(s.Handler.NonGoRestfulMux)
    		}
    	}
    
    	routes.Version{Version: c.Version}.Install(s.Handler.GoRestfulContainer)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/gradients/math_grad_test.cc

        status_ = TestScalarTensorHandle<float, TF_FLOAT>(
            immediate_execution_ctx_.get(), 2.0f, &y_raw);
        ASSERT_EQ(errors::OK, status_.code()) << status_.message();
        y.reset(y_raw);
      }
    
      // TODO(srbs): Rename ops::Add to ops::AddV2 and AddRegister to
      // AddV2Registerer.
      status_ = registry_.Register("AddV2", AddRegisterer);
      ASSERT_EQ(errors::OK, status_.code()) << status_.message();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 17:32:14 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/obj9.go

    		if p.From.Type == obj.TYPE_CONST && p.From.Offset != 0 && p.From.Offset&0xFFFF == 0 {
    			// This is a constant shifted 16 bits to the left, convert it to ADDIS/ORIS $const,...
    			p.As = AADDIS
    			// Use ORIS for large constants which should not be sign extended.
    			if p.From.Offset >= 0x80000000 {
    				p.As = AORIS
    			}
    			p.Reg = REG_R0
    			p.From.Offset >>= 16
    		}
    
    	case AMOVD:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

     *     return Scheduler.newFixedRateSchedule(0, 1, TimeUnit.SECONDS);
     *   }
     * }
     * }</pre>
     *
     * <p>This class uses the life cycle methods to read in a list of starting URIs and save the set of
     * outstanding URIs when shutting down. Also, it takes advantage of the scheduling functionality to
     * rate limit the number of queries we perform.
     *
     * @author Luke Sandberg
     * @since 11.0
     */
    @GwtIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		"/livez/poststarthook/max-in-flight-filter",
    		"/livez/poststarthook/storage-object-count-tracker-hook",
    		"/livez/poststarthook/wrapping-post-start-hook",
    		"/metrics",
    		"/metrics/slis",
    		"/readyz",
    		"/readyz/delegate-health",
    		"/readyz/informer-sync",
    		"/readyz/log",
    		"/readyz/ping",
    		"/readyz/poststarthook/delegate-post-start-hook",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/controllermanager.go

    	logsapi "k8s.io/component-base/logs/api/v1"
    	metricsfeatures "k8s.io/component-base/metrics/features"
    	controllersmetrics "k8s.io/component-base/metrics/prometheus/controllers"
    	"k8s.io/component-base/metrics/prometheus/slis"
    	"k8s.io/component-base/term"
    	"k8s.io/component-base/version"
    	"k8s.io/component-base/version/verflag"
    	genericcontrollermanager "k8s.io/controller-manager/app"
    	"k8s.io/controller-manager/controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top