Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for inform (0.3 sec)

  1. src/runtime/proc.go

    			res = true
    		}
    	}
    	return res
    }
    
    // Tell the goroutine running on processor P to stop.
    // This function is purely best-effort. It can incorrectly fail to inform the
    // goroutine. It can inform the wrong goroutine. Even if it informs the
    // correct goroutine, that goroutine might ignore the request if it is
    // simultaneously executing newstack.
    // No lock needs to be held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    		if err != nil {
    			return nil, fmt.Errorf("while starting informer-based ClusterTrustBundle manager: %w", err)
    		}
    		kubeInformers.Start(wait.NeverStop)
    		klog.InfoS("Started ClusterTrustBundle informer")
    	} else {
    		// In static kubelet mode, use a no-op manager.
    		clusterTrustBundleManager = &clustertrustbundle.NoopManager{}
    		klog.InfoS("Not starting ClusterTrustBundle informer because we are in static kubelet mode")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    	informer.Batch().V1().Jobs().Informer().GetIndexer().Add(job1)
    	informer.Batch().V1().Jobs().Informer().GetIndexer().Add(job2)
    	informer.Batch().V1().Jobs().Informer().GetIndexer().Add(job3)
    
    	pod1 := newPod("pod1", job1)
    	// Make pod an orphan. Expect all matching controllers to be queued.
    	pod1.OwnerReferences = nil
    	informer.Core().V1().Pods().Informer().GetIndexer().Add(pod1)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/images/mlir-infra.svg

    mlir-infra.svg...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 147.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      bool InferShapeForIf(IfOp op);
    
      // Infers the shape IfRegion outputs based on the shapes of the then and else
      // yields.
      bool InferShapeForIfRegion(IfRegionOp op);
    
      // Infers the shape CaseOp outputs based on the shapes of branch function
      // result types.
      bool InferShapeForCase(CaseOp op);
    
      // Infers the shape CaseRegion outputs based on the shapes of the branch
      // yields.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK: return %[[CONV2D]] : tensor<1x3x3x2x!quant.uniform<i8:f32, 4.000000e+00>>
    
    // -----
    
    func.func @convolution_upstream_srq_non_const_filter(%arg0: tensor<1x3x3x4x!quant.uniform<i8:f32, 1.000000e+0:-100>>, %arg1: tensor<3x3x4x2x!quant.uniform<i8:f32:3, {2.000000e+2, 3.000000e+3}>>) -> tensor<1x3x3x2x!quant.uniform<i8:f32, 4.000000e+0>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control_test.go

    	return &fakeObjectManager{
    		podInformer.Lister(),
    		claimInformer.Lister(),
    		setInformer.Lister(),
    		podInformer.Informer().GetIndexer(),
    		claimInformer.Informer().GetIndexer(),
    		setInformer.Informer().GetIndexer(),
    		revisionInformer.Informer().GetIndexer(),
    		newRequestTracker(0, nil, 0),
    		newRequestTracker(0, nil, 0),
    		newRequestTracker(0, nil, 0),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller_test.go

    	podControl.podStore = informerFactory.Core().V1().Pods().Informer().GetStore()
    
    	newDsc := &daemonSetsController{
    		dsc,
    		informerFactory.Apps().V1().DaemonSets().Informer().GetStore(),
    		informerFactory.Apps().V1().ControllerRevisions().Informer().GetStore(),
    		informerFactory.Core().V1().Pods().Informer().GetStore(),
    		informerFactory.Core().V1().Nodes().Informer().GetStore(),
    		fakeRecorder,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            def failure = runAndFail("insight")
    
            then:
            failure.assertHasCause("Dependency insight report cannot be generated because the input configuration was not specified.")
        }
    
        def "informs that there are no dependencies"() {
            given:
            buildFile << """
                configurations {
                    conf
                }
                task insight(type: DependencyInsightReportTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.4.md

    * NodeController waits for informer sync before doing anything ([#34809](https://github.com/kubernetes/kubernetes/pull/34809), [@gmarek](https://github.com/gmarek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top