Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 282 for conditional (0.27 sec)

  1. pkg/apis/admissionregistration/v1/zz_generated.conversion.go

    	out.ObservedGeneration = in.ObservedGeneration
    	out.TypeChecking = (*admissionregistration.TypeChecking)(unsafe.Pointer(in.TypeChecking))
    	out.Conditions = *(*[]metav1.Condition)(unsafe.Pointer(&in.Conditions))
    	return nil
    }
    
    // Convert_v1_ValidatingAdmissionPolicyStatus_To_admissionregistration_ValidatingAdmissionPolicyStatus is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:30 UTC 2024
    - 73.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        //   value need to be routed through all paths that don't write.
        // While: since while condition cannot write, any resource written in the
        //   while body will need to be read as well in case the while body is never
        //   executed.
        // Both cases are handled by the condition below.
        if (info.is_written && !info.is_written_all) info.is_read = true;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	// Since multiple threads can simultaneously detect the state
    	// transition condition, any thread that detects a transition
    	// condition must acquire the appropriate transition lock,
    	// re-check the transition condition and return if it no
    	// longer holds or perform the transition if it does.
    	// Likewise, any transition must invalidate the transition
    	// condition before releasing the lock. This ensures that each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    					// Nothing was saved; we will fall back into the same condition
    					// in the next call to this method
    					return err
    				}
    			}
    			if err = ctrl.reclaimVolume(ctx, volume); err != nil {
    				// Release failed, we will fall back into the same condition
    				// in the next call to this method
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	addPods(t, controller, fx, inputPod)
    
    	output := controller.pods.getPodByKey(config.NamespacedName(expectPod))
    	// The final pod status conditions will be determined by the function addPods.
    	// So we assign these status conditions to expect pod.
    	expectPod.Status.Conditions = output.Status.Conditions
    	if !reflect.DeepEqual(expectPod, output) {
    		t.Fatalf("Wanted: %v\n. Got: %v", expectPod, output)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    					if dr == nil {
    						// Don't bother giving the match conditions, the problem is that there are unknowns in the VirtualService
    						mismatchNotes = append(mismatchNotes, fmt.Sprintf("Warning: Route to subset %s but NO DESTINATION RULE defining subsets!", dest.Destination.Subset))
    					} else {
    						// Don't bother giving the match conditions, the problem is that there are unknowns in the VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final Map<String, String[]> conditions = new HashMap<>();
                for (final Map.Entry<String, String[]> entry : request.getParameterMap().entrySet()) {
                    final String key = entry.getKey();
                    if (key.startsWith("as.")) {
                        final String[] value = simplifyArray(entry.getValue());
                        conditions.put(key.substring("as.".length()), value);
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    	}
    	mapStringForTopology += "}"
    	s := strings.Join([]string{`&Endpoint{`,
    		`Addresses:` + fmt.Sprintf("%v", this.Addresses) + `,`,
    		`Conditions:` + strings.Replace(strings.Replace(this.Conditions.String(), "EndpointConditions", "EndpointConditions", 1), `&`, ``, 1) + `,`,
    		`Hostname:` + valueToStringGenerated(this.Hostname) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

        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.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package reconciler
    
    import (
    	"context"
    	"fmt"
    	"sync"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/strategy_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			Strategy.PrepareForCreate(genericapirequest.NewContext(), tt.pod)
    			var got api.PodCondition
    			for _, condition := range tt.pod.Status.Conditions {
    				if condition.Type == api.PodScheduled {
    					got = condition
    					break
    				}
    			}
    
    			if diff := cmp.Diff(tt.want, got); diff != "" {
    				t.Errorf("unexpected field errors (-want, +got):\n%s", diff)
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top