Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for methods_ (0.32 sec)

  1. src/time/tick_test.go

    				testTimerChan(t, tim, tim.C, name == "0")
    			})
    		})
    	}
    }
    
    type timer interface {
    	Stop() bool
    	Reset(Duration) bool
    }
    
    // tickerTimer is a Timer with Reset and Stop methods that return bools,
    // to have the same signatures as Timer.
    type tickerTimer struct {
    	*Ticker
    	stopped bool
    }
    
    func (t *tickerTimer) Stop() bool {
    	pending := !t.stopped
    	t.stopped = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. RELEASE.md

    *   Keras:
    
        *   `tf.keras.layers.Conv` now includes a public `convolution_op` method.
            This method can be used to simplify the implementation of Conv
            subclasses. There are two primary ways to use this new method. The first
            is to use the method directly in your own `call` method: `python class
            StandardizedConv2D(tf.keras.layers.Conv2D): def call(self, inputs):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            groovyFile(settingsFile, script)
        }
    
        /**
         * Provides best-effort groovy script syntax highlighting.
         * The highlighting is imperfect since {@link GroovyBuildScriptLanguage} uses stub methods to create a simulated script target environment.
         */
        void groovyFile(String targetBuildFile, @GroovyBuildScriptLanguage String script) {
            groovyFile(file(targetBuildFile), script)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    	}
    	// store all httproute with prefix match uri
    	tmpPrefix := match.Uri.GetPrefix()
    	if tmpPrefix != "" {
    		// set Method
    		methodExact := match.Method.GetExact()
    		methodPrefix := match.Method.GetPrefix()
    		methodMatch := assignExactOrPrefix(methodExact, methodPrefix)
    		// if no method information, it should be GET by default
    		if methodMatch == "" {
    			methodMatch = matchExact + "GET"
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta.go

    	return &Connection{
    		Connection:   xds.NewConnection(peerAddr, nil),
    		deltaStream:  stream,
    		deltaReqChan: make(chan *discovery.DeltaDiscoveryRequest, 1),
    	}
    }
    
    // To satisfy methods that need DiscoveryRequest. Not suitable for real usage
    func deltaToSotwRequest(request *discovery.DeltaDiscoveryRequest) *discovery.DiscoveryRequest {
    	return &discovery.DiscoveryRequest{
    		Node:          request.Node,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    // returns without error, the pod is considered to be terminated and it will be safe to clean up any
    // pod state that is tied to the lifetime of running containers. The next method invoked will be
    // SyncTerminatedPod. This method is expected to return with the grace period provided and the
    // provided context may be cancelled if the duration is exceeded. The method may also be interrupted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.VirtualServiceIneffectiveMatch, "VirtualService non-method-get"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-in-single-match"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-in-two-matches"},
    			{msg.VirtualServiceIneffectiveMatch, "VirtualService overlapping-mathes-with-different-methods"},
    		},
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/time/format.go

    // formatted your way; see the values of constants like [ANSIC], [StampMicro] or
    // [Kitchen] for examples. The model is to demonstrate what the reference time
    // looks like so that the Format and Parse methods can apply the same
    // transformation to a general time value.
    //
    // Here is a summary of the components of a layout string. Each element shows by
    // example the formatting of an element of the reference time. Only these values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    			cache.iamSTSPolicyMap.Store(k, v)
    			return true
    		})
    
    		cache.updatedAt = time.Now()
    	}
    
    	return nil
    }
    
    // IAMStoreSys contains IAMStorageAPI to add higher-level methods on the storage
    // layer.
    type IAMStoreSys struct {
    	IAMStorageAPI
    
    	group *singleflight.Group
    }
    
    // HasWatcher - returns if the storage system has a watcher.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    	if err != nil {
    		t.Errorf("MinIO %s: Failed to create http request for testing the response when object Layer is set to `nil`.", instanceType)
    	}
    
    	// Below is how CopyObjectPartHandler is registered.
    	// bucket.Methods(http.MethodPut).Path("/{object:.+}").HeadersRegexp("X-Amz-Copy-Source", ".*?(\\/|%2F).*?").HandlerFunc(api.CopyObjectPartHandler).Queries("partNumber", "{partNumber:[0-9]+}", "uploadId", "{uploadId:.*}")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top