Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 94 for Required (0.12 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    		assert.NoError(t, kubelet.updateNodeStatus(ctx))
    		actions := kubeClient.Actions()
    		require.Len(t, actions, 2)
    		require.True(t, actions[1].Matches("patch", "nodes"))
    		require.Equal(t, actions[1].GetSubresource(), "status")
    
    		updatedNode, err := kubeClient.CoreV1().Nodes().Get(ctx, testKubeletHostname, metav1.GetOptions{})
    		require.NoError(t, err, "can't apply node status patch")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    	credentials auth.Credentials, t *testing.T,
    ) {
    	objectName := "test-object"
    	// set of byte data for PutObject.
    	// object has to be created before running tests for HeadObject.
    	// this is required even to assert the HeadObject data,
    	// since dataInserted === dataFetched back is a primary criteria for any object storage this assertion is critical.
    	bytesData := []struct {
    		byteData []byte
    	}{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if skip(c) {
    		return nil
    	}
    	name := c.Name.Copy(fn, skip)
    	requires := c.Requires.Copy(fn, skip)
    	if name == nil && requires == nil {
    		return fn(c)
    	}
    	if name == nil {
    		name = c.Name
    	}
    	if requires == nil {
    		requires = c.Requires
    	}
    	c = &Constraint{Name: name, Requires: requires}
    	if r := fn(c); r != nil {
    		return r
    	}
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    		deps = append(deps, "runtime/coverage")
    	}
    
    	return deps, nil
    }
    
    // externalLinkingReason reports the reason external linking is required
    // even for programs that do not use cgo, or the empty string if external
    // linking is not required.
    func externalLinkingReason(p *Package) (what string) {
    	// Some targets must use external linking even inside GOROOT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.cc

      for (const tensorflow::Edge* edge : control_edges) {
        graph->graph.RemoveControlEdge(edge);
      }
    }
    
    void TF_SetRequireShapeInferenceFns(TF_Graph* graph, bool require) {
      mutex_lock l(graph->mu);
      graph->refiner.set_require_shape_inference_fns(require);
    }
    
    void TF_ExtendSession(TF_Session* session, TF_Status* status) {
      ExtendSessionGraphHelper(session, status);
      session->extend_before_run = false;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    				),
    				test.containerName,
    				options,
    			)
    			require.Equal(t, test.expectedStatus, status)
    
    			if status != nil {
    				return
    			}
    
    			require.True(
    				t,
    				strings.HasPrefix(
    					options.Location,
    					test.expectedLocation,
    				),
    			)
    			require.Equal(
    				t,
    				options.ContainerId,
    				containerID.ID,
    			)
    
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_generator.go

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      }
    
      if (!IsOfRankOrUnranked(op.getDepth(), 0)) {
        return op.emitOpError() << "requires depth to be a scalar";
      }
      if (!IsOfRankOrUnranked(op.getOnValue(), 0)) {
        return op.emitOpError() << "requires on_value to be a scalar";
      }
      if (!IsOfRankOrUnranked(op.getOffValue(), 0)) {
        return op.emitOpError() << "requires off_value to be a scalar";
      }
    
      DenseIntElementsAttr depth_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_control_test.go

    	}{
    		{
    			name:                   "replicas running for required time, when minReadySeconds is enabled",
    			inputSTS:               setMinReadySeconds(newStatefulSet(1), int32(3600)),
    			readyDuration:          -120 * time.Minute,
    			expectedActiveReplicas: int32(1),
    		},
    		{
    			name:                   "replicas not running for required time, when minReadySeconds is enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top