Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Rails (0.17 sec)

  1. licenses/github.com/hashicorp/go-multierror/LICENSE

         are reinstated (a) provisionally, unless and until such Contributor
         explicitly and finally terminates Your grants, and (b) on an ongoing basis,
         if such Contributor fails to notify You of the non-compliance by some
         reasonable means prior to 60 days after You have come back into compliance.
         Moreover, Your grants from a particular Contributor are reinstated on an
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // Container will be restarted if the probe fails.
      // Cannot be updated.
      // More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
      // +optional
      optional Probe livenessProbe = 10;
    
      // Periodic probe of container service readiness.
      // Container will be removed from service endpoints if the probe fails.
      // Cannot be updated.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  3. operator/cmd/mesh/test-util_test.go

    }
    
    // mustGetService returns the service with the given name or fails if it's not found in objs.
    func mustGetService(g *WithT, objs *ObjectSet, name string) *object.K8sObject {
    	obj := objs.kind(name2.ServiceStr).nameEquals(name)
    	g.Expect(obj).Should(Not(BeNil()))
    	return obj
    }
    
    // mustGetDeployment returns the deployment with the given name or fails if it's not found in objs.
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails.
      // Since messageExpression is used as a failure message, it must evaluate to a string.
      // If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.7K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/go-version/LICENSE

         are reinstated (a) provisionally, unless and until such Contributor
         explicitly and finally terminates Your grants, and (b) on an ongoing basis,
         if such Contributor fails to notify You of the non-compliance by some
         reasonable means prior to 60 days after You have come back into compliance.
         Moreover, Your grants from a particular Contributor are reinstated on an
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  6. common/config/license-lint.yml

    # Public domain: https://github.com/xi2/xz/blob/master/LICENSE
    - github.com/xi2/xz
    
    # Helm is Apache 2.0: https://github.com/helm/helm/blob/master/LICENSE
    # However, it has a bunch of LICENSE test files that our linter fails to understand
    - helm.sh/helm/v3
    
    # https://github.com/pelletier/go-toml/blob/master/LICENSE
    # Uses MIT for everything, except a few files copied from
    # google's civil library that uses Apache 2
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jan 25 19:26:20 GMT 2023
    - 3.2K bytes
    - Viewed (1)
  7. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

         are reinstated (a) provisionally, unless and until such Contributor
         explicitly and finally terminates Your grants, and (b) on an ongoing
         basis, if such Contributor fails to notify You of the non-compliance by
         some reasonable means prior to 60 days after You have come back into
         compliance. Moreover, Your grants from a particular Contributor are
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 03 20:21:32 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional bool suspend = 10;
    }
    
    // JobStatus represents the current state of a Job.
    message JobStatus {
      // The latest available observations of an object's current state. When a Job
      // fails, one of the conditions will have type "Failed" and status true. When
      // a Job is suspended, one of the conditions will have type "Suspended" and
      // status true; when the Job is resumed, the status of this condition will
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  9. cni/pkg/log/uds_test.go

    	log.Debug("debug log")
    	log.Info("info log")
    	log.Warn("warn log")
    	log.Error("error log")
    	// This will error because stdout cannot sync, but the UDS part should sync
    	// Ideally we would fail if the UDS part fails but the error library makes it kind of tricky
    	_ = log.Sync()
    
    	// Restore os stdout.
    	os.Stdout = stdout
    	assert.NoError(t, log.Configure(loggingOptions))
    
    	assert.NoError(t, w.Close())
    	out, err := io.ReadAll(r)
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Mar 16 00:20:01 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  10. operator/cmd/mesh/profile-diff_test.go

    			expectedString: "+    profile: openshift",
    			// The profile doesn't change istiocoredns, so we shouldn't see this in the diff
    			notExpected: "-    istiocoredns:",
    			// 'profile diff' "fails" so that the error level `$?` is 1, not 0, if there is a diff
    			shouldFail: false,
    		},
    	}
    
    	l := clog.NewConsoleLogger(os.Stdout, os.Stderr, nil)
    	for i, c := range cases {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 3.6K bytes
    - Viewed (1)
Back to top